Home | History | Annotate | Download | only in glcpp

Lines Matching full:combined

950 	token_t *combined = NULL;
960 /* A very few single-character punctuators can be combined
965 combined = _token_create_ival (token, LEFT_SHIFT, LEFT_SHIFT);
967 combined = _token_create_ival (token, LESS_OR_EQUAL, LESS_OR_EQUAL);
971 combined = _token_create_ival (token, RIGHT_SHIFT, RIGHT_SHIFT);
973 combined = _token_create_ival (token, GREATER_OR_EQUAL, GREATER_OR_EQUAL);
977 combined = _token_create_ival (token, EQUAL, EQUAL);
981 combined = _token_create_ival (token, NOT_EQUAL, NOT_EQUAL);
985 combined = _token_create_ival (token, AND, AND);
989 combined = _token_create_ival (token, OR, OR);
993 if (combined != NULL) {
995 combined->location = token->location;
996 return combined;
1014 combined = _token_create_str (token, token->type, str);
1015 combined->location = token->location;
1016 return combined;