Lines Matching refs:combined
3745 token_t *combined = NULL;
3755 /* A very few single-character punctuators can be combined
3760 combined = _token_create_ival (parser, LEFT_SHIFT, LEFT_SHIFT);
3762 combined = _token_create_ival (parser, LESS_OR_EQUAL, LESS_OR_EQUAL);
3766 combined = _token_create_ival (parser, RIGHT_SHIFT, RIGHT_SHIFT);
3768 combined = _token_create_ival (parser, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
3772 combined = _token_create_ival (parser, EQUAL, EQUAL);
3776 combined = _token_create_ival (parser, NOT_EQUAL, NOT_EQUAL);
3780 combined = _token_create_ival (parser, AND, AND);
3784 combined = _token_create_ival (parser, OR, OR);
3788 if (combined != NULL) {
3790 combined->location = token->location;
3791 return combined;
3844 combined = _token_create_str (parser, combined_type, str);
3845 combined->location = token->location;
3846 return combined;