Home
last modified time | relevance | path

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

/scripts/genksyms/
Dparse.y63 %token ASM_KEYW
64 %token ATTRIBUTE_KEYW
65 %token AUTO_KEYW
66 %token BOOL_KEYW
67 %token BUILTIN_INT_KEYW
68 %token CHAR_KEYW
69 %token CONST_KEYW
70 %token DOUBLE_KEYW
71 %token ENUM_KEYW
72 %token EXTERN_KEYW
[all …]
Dlex.l129 int token, count = 0;
140 token = yylex1();
142 if (token == 0)
144 else if (token == FILENAME)
172 switch (token)
180 switch (token = r)
209 token = TYPE;
242 switch (token)
251 token = ATTRIBUTE_PHRASE;
262 switch (token)
[all …]
Dkeywords.c4 int token; member
72 return r->token; in is_reserved_word()
/scripts/kconfig/
Dparser.y45 %token <string> T_HELPTEXT
46 %token <string> T_WORD
47 %token <string> T_WORD_QUOTE
48 %token T_ALLNOCONFIG_Y
49 %token T_BOOL
50 %token T_CHOICE
51 %token T_CLOSE_PAREN
52 %token T_COLON_EQUAL
53 %token T_COMMENT
54 %token T_CONFIG
[all …]
/scripts/dtc/
Ddtc-parser.y44 %token DT_V1
45 %token DT_PLUGIN
46 %token DT_MEMRESERVE
47 %token DT_LSHIFT DT_RSHIFT DT_LE DT_GE DT_EQ DT_NE DT_AND DT_OR
48 %token DT_BITS
49 %token DT_DEL_PROP
50 %token DT_DEL_NODE
51 %token DT_OMIT_NO_REF
52 %token <propnodename> DT_PROPNODENAME
53 %token <integer> DT_LITERAL
[all …]
/scripts/
Dasn1_compiler.c300 struct token { struct
309 static struct token *token_list; argument
319 const struct token *token = _key; in directive_compare() local
325 clen = (dlen < token->size) ? dlen : token->size; in directive_compare()
329 val = memcmp(token->content, dir, clen); in directive_compare()
335 if (dlen == token->size) { in directive_compare()
340 return dlen - token->size; /* shorter -> negative */ in directive_compare()
348 struct token *tokens; in tokenise()
355 token_list = tokens = calloc((end - buffer) / 2, sizeof(struct token)); in tokenise()
683 struct token *name;
[all …]
Dkallsyms.c499 static void *find_token(unsigned char *str, int len, unsigned char *token) in find_token() argument
504 if (str[i] == token[0] && str[i+1] == token[1]) in find_token()