Searched refs:IDENT (Results 1 – 14 of 14) sorted by relevance
118 %right <string> IDENT485 | IDENT maybe_space { $$ = $1; }494 IDENT maybe_space {594 IDENT maybe_space {607 IDENT642 | IDENT {676 IDENT {682 | IDENT pseudo_page {896 | IDENT '|' { $$ = $1; }960 IDENT {[all …]
45 {ident} {yyTok = IDENT; return yyTok;}
5938 case IDENT: in lex()
4 IDENT.2
784 matchOrFail(IDENT); in parseVarDeclarationList()821 matchOrFail(IDENT); in parseConstDeclarationList()961 matchOrFail(IDENT); in parseBreakStatement()984 matchOrFail(IDENT); in parseContinueStatement()1146 matchOrFail(IDENT); in parseTryStatement()1249 case IDENT: in parseStatement()1264 matchOrFail(IDENT); in parseFormalParameters()1271 matchOrFail(IDENT); in parseFormalParameters()1295 if (match(IDENT)) { in parseFunctionInfo()1423 } while (match(IDENT)); in parseExpressionOrLabelStatement()[all …]
84 IDENT, enumerator
449 return entry ? static_cast<JSTokenType>(entry->lexerValue()) : IDENT; in parseIdentifier()453 return IDENT; in parseIdentifier()
14 /// LANGSTANDARD(IDENT, NAME, DESC, FEATURES)16 /// \param IDENT - The name of the standard as a C++ identifier.
1036 while (dp < ident+IDENT) { in yylex()1043 while (dp < ident+IDENT && (c = *sp++) == CHAR) in yylex()1046 memset(dp, 0, (ident+IDENT) - dp + 1); in yylex()
1355 #define IDENT 64 macro1458 EXTERN char ident[IDENT+1];
234 IDENT=sshd
18468 (AssignDotNode): Node that handles assignments of the form EXPR . IDENT = EXPR18469 (AssignBracketNode): EXPR [ IDENT ] = EXPR
34096 well as for IDENT.
93272 … In the bison template, "hexcolor" was defined as both "HEX maybe_space" OR "IDENT maybe_space".93277 To correct this, "IDENT maybe_space" was removed from "hexcolor" and added under "term" as93278 '#' IDENT maybe_space, which is then processed as a CSSPrimitiveValue::CSS_STRING instead of