Lines Matching refs:IDENTIFIER
113 %token <sval> IDENTIFIER UNKNOWN_NAME
359 | PostfixExpression '.' IDENTIFIER
364 | PostfixExpression '.' IDENTIFIER COMPLETE
563 IDENTIFIER
977 /* Identifier-like tokens. */
1242 terminates the expression. "thread" could be an identifier, but
1243 an identifier is never followed by a number without intervening
1301 return IDENTIFIER;
1323 /* Classify an IDENTIFIER token. The contents of the token are in `yylval'.
1359 return IDENTIFIER;
1391 return IDENTIFIER;
1416 if (current.token != IDENTIFIER && current.token != '.')
1419 /* Read any sequence of alternating "." and identifier tokens into
1431 if ((last_was_dot && current.token != IDENTIFIER)
1448 if (current.token == IDENTIFIER)
1455 /* If the IDENTIFIER is not known, it could be a package symbol,
1472 if (next.token == IDENTIFIER && last_was_dot)
1536 if (next.token == IDENTIFIER && last_was_dot)
1545 if (classification != TYPENAME && classification != IDENTIFIER)
1567 if (classification == IDENTIFIER)