Lines Matching refs:choice
1130 choice = _cur_menu.item
1131 if choice.selection:
1134 for node in choice.selection.nodes:
2221 key=lambda choice: choice.name or "")
2224 [node for choice in choices for node in choice.nodes],
2563 choice = node.item
2566 _name_info(choice) +
2567 _prompt_info(choice) +
2568 "Type: {}\n".format(TYPE_TO_STR[choice.type]) +
2569 'Mode: {}\n'.format(choice.str_value) +
2570 _help_info(choice) +
2571 _choice_syms_info(choice) +
2572 _direct_dep_info(choice) +
2573 _defaults_info(choice) +
2574 _kconfig_def_info(choice)
2609 def _choice_syms_info(choice): argument
2615 for sym in choice.syms:
2617 if sym is choice.selection:
2994 not (sym.choice and sym.choice.tri_value == 2):
3054 return "(X)" if item.choice.selection is item else "( )"
3075 return isinstance(item, Symbol) and item.choice and item.visibility == 2