Searched refs:token (Results 1 – 16 of 16) sorted by relevance
/scripts/genksyms/ |
D | parse.y | 75 %token ASM_KEYW 76 %token ATTRIBUTE_KEYW 77 %token AUTO_KEYW 78 %token BOOL_KEYW 79 %token CHAR_KEYW 80 %token CONST_KEYW 81 %token DOUBLE_KEYW 82 %token ENUM_KEYW 83 %token EXTERN_KEYW 84 %token EXTENSION_KEYW [all …]
|
D | lex.l | 140 int token, count = 0; 151 token = yylex1(); 153 if (token == 0) 155 else if (token == FILENAME) 183 switch (token) 191 switch (token = r->token) 216 token = TYPE; 249 switch (token) 258 token = ATTRIBUTE_PHRASE; 269 switch (token) [all …]
|
D | lex.lex.c_shipped | 1035 } /* end of scanning one token */ 1304 * token and flags that we need to 1305 * try matching the token before 1755 /** Get the length of the current token. 1763 /** Get the current token. 1913 * We mark any token, that that equals to a known enumerator, as 1949 int token, count = 0; 1960 token = yylex1(); 1962 if (token == 0) 1964 else if (token == FILENAME) [all …]
|
D | parse.tab.c_shipped | 133 /* Enabling the token table. */ 592 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to 593 token YYLEX-NUM. */ 716 positive, shift that token. If negative, reduce the rule which 1031 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); 1238 about the unexpected token YYTOKEN for the state stack whose top is 1273 that there is no unexpected or expected token to report. In that 1279 - Of course, the expected token list depends on states to have 1284 token list. However, the list is correct for canonical LR with 1285 one exception: it will still contain any token that will not be [all …]
|
D | keywords.gperf | 8 struct resword { const char *name; int token; }
|
D | keywords.hash.c_shipped | 36 struct resword { const char *name; int token; };
|
/scripts/kconfig/ |
D | zconf.y | 46 %token <id>T_MAINMENU 47 %token <id>T_MENU 48 %token <id>T_ENDMENU 49 %token <id>T_SOURCE 50 %token <id>T_CHOICE 51 %token <id>T_ENDCHOICE 52 %token <id>T_COMMENT 53 %token <id>T_CONFIG 54 %token <id>T_MENUCONFIG 55 %token <id>T_HELP [all …]
|
D | zconf.l | 104 return id->token; 137 return id->token;
|
D | zconf.tab.c_shipped | 125 /* Enabling the token table. */ 199 /* Include zconf.hash.c here so it can see the token constants. */ 573 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to 574 token YYLEX-NUM. */ 693 positive, shift that token. If negative, reduce the rule which 966 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); 1173 /* Copy into YYRESULT an error message about the unexpected token 1424 /* Lookahead token as an internal (translated) token number. */ 1453 yychar = YYEMPTY; /* Cause a token to be read. */ 1549 lookahead token if we need one and don't already have one. */ [all …]
|
D | lkc.h | 61 int token; member 112 void menu_add_option(int token, char *arg);
|
D | menu.c | 185 void menu_add_option(int token, char *arg) in menu_add_option() argument 189 switch (token) { in menu_add_option()
|
D | zconf.lex.c_shipped | 1094 return id->token; 1166 return id->token; 1462 } /* end of scanning one token */ 1705 * token and flags that we need to 1706 * try matching the token before 2150 /** Get the length of the current token. 2158 /** Get the current token.
|
/scripts/dtc/ |
D | dtc-parser.y | 56 %token DT_V1 57 %token DT_MEMRESERVE 58 %token <propnodename> DT_PROPNODENAME 59 %token <literal> DT_LITERAL 60 %token <cbase> DT_BASE 61 %token <byte> DT_BYTE 62 %token <data> DT_STRING 63 %token <labelref> DT_LABEL 64 %token <labelref> DT_REF 65 %token DT_INCBIN
|
D | dtc-parser.tab.c_shipped | 101 /* Enabling the token table. */ 479 /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to 480 token YYLEX-NUM. */ 550 positive, shift that token. If negative, reduce the rule which 762 YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); 969 /* Copy into YYRESULT an error message about the unexpected token 1190 /* Lookahead token as an internal (translated) token number. */ 1219 yychar = YYEMPTY; /* Cause a token to be read. */ 1315 lookahead token if we need one and don't already have one. */ 1317 /* First try to decide what to do without reference to lookahead token. */ [all …]
|
D | dtc-lexer.lex.c_shipped | 1128 } /* end of scanning one token */ 1359 * token and flags that we need to 1360 * try matching the token before 1804 /** Get the length of the current token. 1812 /** Get the current token.
|
/scripts/ |
D | kallsyms.c | 417 static void *find_token(unsigned char *str, int len, unsigned char *token) in find_token() argument 422 if (str[i] == token[0] && str[i+1] == token[1]) in find_token()
|