Lines Matching refs:id
27 static bool zconf_endtoken(const struct kconf_id *id, int starttoken, int endtoken);
43 const struct kconf_id *id; member
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
57 %token <id>T_IF
58 %token <id>T_ENDIF
59 %token <id>T_DEPENDS
60 %token <id>T_OPTIONAL
61 %token <id>T_PROMPT
62 %token <id>T_TYPE
63 %token <id>T_DEFAULT
64 %token <id>T_SELECT
65 %token <id>T_RANGE
66 %token <id>T_VISIBLE
67 %token <id>T_OPTION
68 %token <id>T_ON
90 %type <id> end
91 %type <id> option_name
252 const struct kconf_id *id = kconf_id_lookup($2, strlen($2)); variable
253 if (id && id->flags & TF_OPTION)
254 menu_add_option(id->token, $3);
558 static bool zconf_endtoken(const struct kconf_id *id, int starttoken, int endtoken) in zconf_endtoken() argument
560 if (id->token != endtoken) { in zconf_endtoken()
562 kconf_id_strings + id->name, zconf_tokenname(starttoken)); in zconf_endtoken()
568 kconf_id_strings + id->name, zconf_tokenname(starttoken)); in zconf_endtoken()