Lines Matching refs:combined
1208 token_t *combined = NULL;
1218 /* A very few single-character punctuators can be combined
1223 combined = _token_create_ival (parser, LEFT_SHIFT, LEFT_SHIFT);
1225 combined = _token_create_ival (parser, LESS_OR_EQUAL, LESS_OR_EQUAL);
1229 combined = _token_create_ival (parser, RIGHT_SHIFT, RIGHT_SHIFT);
1231 combined = _token_create_ival (parser, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
1235 combined = _token_create_ival (parser, EQUAL, EQUAL);
1239 combined = _token_create_ival (parser, NOT_EQUAL, NOT_EQUAL);
1243 combined = _token_create_ival (parser, AND, AND);
1247 combined = _token_create_ival (parser, OR, OR);
1251 if (combined != NULL) {
1253 combined->location = token->location;
1254 return combined;
1307 combined = _token_create_str (parser, combined_type, str);
1308 combined->location = token->location;
1309 return combined;