Home
last modified time | relevance | path

Searched refs:token (Results 1 – 16 of 16) sorted by relevance

/scripts/genksyms/
Dparse.y75 %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 …]
Dlex.l140 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 …]
Dlex.lex.c_shipped1035 } /* 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 …]
Dparse.tab.c_shipped133 /* 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 …]
Dkeywords.gperf8 struct resword { const char *name; int token; }
Dkeywords.hash.c_shipped36 struct resword { const char *name; int token; };
/scripts/kconfig/
Dzconf.y46 %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 …]
Dzconf.l104 return id->token;
137 return id->token;
Dzconf.tab.c_shipped125 /* 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 …]
Dlkc.h61 int token; member
112 void menu_add_option(int token, char *arg);
Dmenu.c185 void menu_add_option(int token, char *arg) in menu_add_option() argument
189 switch (token) { in menu_add_option()
Dzconf.lex.c_shipped1094 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/
Ddtc-parser.y56 %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
Ddtc-parser.tab.c_shipped101 /* 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 …]
Ddtc-lexer.lex.c_shipped1128 } /* 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/
Dkallsyms.c417 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()