Searched refs:choice (Results 1 – 15 of 15) sorted by relevance
/scripts/kconfig/tests/choice/ |
D | oldask1_expected_stdout | 2 boolean choice 3 1. choice 0 (BOOL_CHOICE0) (NEW) 4 > 2. choice 1 (BOOL_CHOICE1) (NEW) 5 choice[1-2?]: 6 optional boolean choice [Y/n/?] (NEW) 7 optional boolean choice 8 > 1. choice 0 (OPT_BOOL_CHOICE0) 9 2. choice 1 (OPT_BOOL_CHOICE1) (NEW) 10 choice[1-2?]: 11 tristate choice [all …]
|
D | Kconfig | 8 choice 9 prompt "boolean choice" 13 bool "choice 0" 16 bool "choice 1" 20 choice 21 prompt "optional boolean choice" 26 bool "choice 0" 29 bool "choice 1" 33 choice 34 prompt "tristate choice" [all …]
|
D | oldask0_expected_stdout | 2 boolean choice 3 1. choice 0 (BOOL_CHOICE0) (NEW) 4 > 2. choice 1 (BOOL_CHOICE1) (NEW) 5 choice[1-2?]: 6 optional boolean choice [N/y/?] (NEW) 7 tristate choice [M/y/?] (NEW) 8 choice 0 (TRI_CHOICE0) [N/m/?] (NEW) 9 choice 1 (TRI_CHOICE1) [N/m/?] (NEW) 10 optional tristate choice [N/m/y/?] (NEW)
|
/scripts/kconfig/lxdialog/ |
D | checklist.c | 18 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 28 wmove(win, choice, 0); in print_item() 32 wmove(win, choice, check_x); in print_item() 39 mvwaddch(win, choice, item_x, list_item[0]); in print_item() 43 wmove(win, choice, check_x + 1); in print_item() 52 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument 72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows() 108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local 114 choice = item_n(); in dialog_checklist() 116 choice = item_n(); in dialog_checklist() [all …]
|
D | menubox.c | 89 #define print_item(index, choice, selected) \ argument 92 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 176 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local 237 choice = item_n(); in dialog_menu() 240 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu() 243 choice = choice - scroll; in dialog_menu() 247 if ((choice >= max_choice)) { in dialog_menu() 248 if (choice >= item_count() - max_choice / 2) in dialog_menu() 251 scroll = first_item = choice - max_choice / 2; in dialog_menu() 252 choice = choice - scroll; in dialog_menu() [all …]
|
/scripts/kconfig/tests/inter_choice/ |
D | Kconfig | 7 choice 18 choice 19 prompt "Another choice"
|
/scripts/kconfig/tests/new_choice_with_dep/ |
D | expected_stdout | 5 choice[1-2?]: 10 choice[1-3?]:
|
D | Kconfig | 8 choice 24 choice
|
/scripts/kconfig/tests/auto_submenu/ |
D | expected_stdout | 5 choice 8 choice[1-2?]:
|
D | Kconfig | 28 choice 29 prompt "choice"
|
/scripts/kconfig/tests/choice_value_with_m_dep/ |
D | expected_stdout | 4 choice[1]: 1
|
D | Kconfig | 11 choice
|
/scripts/kconfig/tests/no_write_if_dep_unmet/ |
D | Kconfig | 6 choice
|
/scripts/kconfig/ |
D | symbol.c | 1210 static struct symbol *sym_check_choice_deps(struct symbol *choice) in sym_check_choice_deps() argument 1217 dep_stack_insert(&stack, choice); in sym_check_choice_deps() 1219 prop = sym_get_choice_prop(choice); in sym_check_choice_deps() 1223 choice->flags |= (SYMBOL_CHECK | SYMBOL_CHECKED); in sym_check_choice_deps() 1224 sym2 = sym_check_sym_deps(choice); in sym_check_choice_deps() 1225 choice->flags &= ~SYMBOL_CHECK; in sym_check_choice_deps() 1239 prop_get_symbol(sym_get_choice_prop(sym2)) == choice) in sym_check_choice_deps() 1240 sym2 = choice; in sym_check_choice_deps()
|
D | parser.y | 229 choice: T_CHOICE word_opt T_EOL 239 choice_entry: choice choice_option_list
|