Lines Matching defs:combined
3438 token_t *combined = NULL;
3448 /* A very few single-character punctuators can be combined
3453 combined = _token_create_ival (parser, LEFT_SHIFT, LEFT_SHIFT);
3455 combined = _token_create_ival (parser, LESS_OR_EQUAL, LESS_OR_EQUAL);
3459 combined = _token_create_ival (parser, RIGHT_SHIFT, RIGHT_SHIFT);
3461 combined = _token_create_ival (parser, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
3465 combined = _token_create_ival (parser, EQUAL, EQUAL);
3469 combined = _token_create_ival (parser, NOT_EQUAL, NOT_EQUAL);
3473 combined = _token_create_ival (parser, AND, AND);
3477 combined = _token_create_ival (parser, OR, OR);
3481 if (combined != NULL) {
3483 combined->location = token->location;
3484 return combined;
3537 combined = _token_create_str (parser, combined_type, str);
3538 combined->location = token->location;
3539 return combined;