Home | History | Annotate | Download | only in glcpp

Lines Matching full:combined

1008 	token_t *combined = NULL;
1018 /* A very few single-character punctuators can be combined
1023 combined = _token_create_ival (token, LEFT_SHIFT, LEFT_SHIFT);
1025 combined = _token_create_ival (token, LESS_OR_EQUAL, LESS_OR_EQUAL);
1029 combined = _token_create_ival (token, RIGHT_SHIFT, RIGHT_SHIFT);
1031 combined = _token_create_ival (token, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
1035 combined = _token_create_ival (token, EQUAL, EQUAL);
1039 combined = _token_create_ival (token, NOT_EQUAL, NOT_EQUAL);
1043 combined = _token_create_ival (token, AND, AND);
1047 combined = _token_create_ival (token, OR, OR);
1051 if (combined != NULL) {
1053 combined->location = token->location;
1054 return combined;
1072 combined = _token_create_str (token, token->type, str);
1073 combined->location = token->location;
1074 return combined;