Lines Matching refs:choice
1130 choice = _cur_menu.item
1131 if choice.selection:
1134 for node in choice.selection.nodes:
2227 key=lambda choice: choice.name or "")
2230 [node for choice in choices for node in choice.nodes],
2569 choice = node.item
2572 _name_info(choice) +
2573 _prompt_info(choice) +
2574 "Type: {}\n".format(TYPE_TO_STR[choice.type]) +
2575 'Mode: {}\n'.format(choice.str_value) +
2576 _help_info(choice) +
2577 _choice_syms_info(choice) +
2578 _direct_dep_info(choice) +
2579 _defaults_info(choice) +
2580 _kconfig_def_info(choice)
2615 def _choice_syms_info(choice): argument
2621 for sym in choice.syms:
2623 if sym is choice.selection:
3000 not (sym.choice and sym.choice.tri_value == 2):
3060 return "(X)" if item.choice.selection is item else "( )"
3081 return isinstance(item, Symbol) and item.choice and item.visibility == 2