Lines Matching refs:combined
1321 token_t *combined = NULL;
1331 /* A very few single-character punctuators can be combined
1336 combined = _token_create_ival (parser, LEFT_SHIFT, LEFT_SHIFT);
1338 combined = _token_create_ival (parser, LESS_OR_EQUAL, LESS_OR_EQUAL);
1342 combined = _token_create_ival (parser, RIGHT_SHIFT, RIGHT_SHIFT);
1344 combined = _token_create_ival (parser, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
1348 combined = _token_create_ival (parser, EQUAL, EQUAL);
1352 combined = _token_create_ival (parser, NOT_EQUAL, NOT_EQUAL);
1356 combined = _token_create_ival (parser, AND, AND);
1360 combined = _token_create_ival (parser, OR, OR);
1364 if (combined != NULL) {
1366 combined->location = token->location;
1367 return combined;
1420 combined = _token_create_str (parser, combined_type, str);
1421 combined->location = token->location;
1422 return combined;