Home | History | Annotate | Download | only in glcpp

Lines Matching refs:OTHER

19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
163 %token COMMA_FINAL DEFINED ELIF_EXPANDED HASH HASH_DEFINE FUNC_IDENTIFIER OBJ_IDENTIFIER HASH_ELIF HASH_ELSE HASH_ENDIF HASH_IF HASH_IFDEF HASH_IFNDEF HASH_LINE HASH_UNDEF HASH_VERSION IDENTIFIER IF_EXPANDED INTEGER INTEGER_STRING LINE_EXPANDED NEWLINE OTHER PLACEHOLDER SPACE
166 %type <str> IDENTIFIER FUNC_IDENTIFIER OBJ_IDENTIFIER INTEGER_STRING OTHER
546 | OTHER {
547 $$ = _token_create_str (parser, OTHER, $1);
828 _token_list_copy (void *ctx, token_list_t *other)
833 if (other == NULL)
837 for (node = other->head; node; node = node->next) {
924 case OTHER:
954 case OTHER:
1000 * 'token' and 'other'. Note that this function may return 'token' or
1001 * 'other' directly rather than allocating anything new.
1006 _token_paste (glcpp_parser_t *parser, token_t *token, token_t *other)
1011 if (other->type == PLACEHOLDER)
1014 /* When 'token' is a placeholder, just return 'other'. */
1016 return other;
1022 if (other->type == '<')
1024 else if (other->type == '=')
1028 if (other->type == '>')
1030 else if (other->type == '=')
1034 if (other->type == '=')
1038 if (other->type == '=')
1042 if (other->type == '&')
1046 if (other->type == '|')
1065 if ((token->type == IDENTIFIER || token->type == OTHER || token->type == INTEGER_STRING) &&
1066 (other->type == IDENTIFIER || other->type == OTHER || other->type == INTEGER_STRING))
1071 other->value.str);
1081 _token_print (&parser->info_log, &parser->info_log_length, other);
1537 * OTHER to prevent any future expansion of this
1544 final = _token_create_str (parser, OTHER, str);