Searched refs:token (Results 1 – 9 of 9) sorted by relevance
/scripts/genksyms/ |
D | parse.y | 63 %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 …]
|
D | lex.l | 129 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 …]
|
D | keywords.c | 4 int token; member 72 return r->token; in is_reserved_word()
|
/scripts/kconfig/ |
D | parser.y | 45 %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/ |
D | dtc-parser.y | 48 %token DT_V1 49 %token DT_PLUGIN 50 %token DT_MEMRESERVE 51 %token DT_LSHIFT DT_RSHIFT DT_LE DT_GE DT_EQ DT_NE DT_AND DT_OR 52 %token DT_BITS 53 %token DT_DEL_PROP 54 %token DT_DEL_NODE 55 %token DT_OMIT_NO_REF 56 %token <propnodename> DT_PROPNODENAME 57 %token <integer> DT_LITERAL [all …]
|
/scripts/ |
D | asn1_compiler.c | 300 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 …]
|
D | check-sysctl-docs | 77 token = trimpunct($i) 78 if (length(token) > 0 && token != "and") {
|
D | kallsyms.c | 536 const unsigned char *token) in find_token() argument 541 if (str[i] == token[0] && str[i+1] == token[1]) in find_token()
|
D | Makefile.lib | 134 name-fix-token = $(subst $(comma),_,$(subst -,_,$1)) 135 name-fix = $(call stringify,$(call name-fix-token,$1)) 138 -D__KBUILD_MODNAME=kmod_$(call name-fix-token,$(modname))
|