Searched refs:Choice (Results 1 – 4 of 4) sorted by relevance
| /optee_os/scripts/kconfig/kconfiglib/ |
| H A D | oldconfig.py | 32 from kconfiglib import Symbol, Choice, BOOL, TRISTATE, HEX, standard_kconfig 71 if not isinstance(node.item, (Symbol, Choice)):
|
| H A D | menuconfig.py | 218 from kconfiglib import Symbol, Choice, MENU, COMMENT, MenuNode, \ 1117 if isinstance(menu.item, Choice): 1156 jump_into = (isinstance(node.item, Choice) or node.item == MENU) and \ 1186 if jump_into and isinstance(_cur_menu.item, Choice): 1420 if isinstance(node.item, (Symbol, Choice)) and node.help: 1519 if isinstance(menu.item, Choice): 1631 if not isinstance(sc, (Symbol, Choice)): 1649 if isinstance(sc, (Symbol, Choice)) and tri_val in sc.assignable: 2303 if isinstance(node.item, (Symbol, Choice)): 2532 "Choice" if isinstance(node.item, Choice) else [all …]
|
| H A D | guiconfig.py | 75 from kconfiglib import Symbol, Choice, MENU, COMMENT, MenuNode, \ 825 elif isinstance(node.item, Choice) and node.item.tri_value == 2: 873 return "" if isinstance(item, Choice) else item.str_value + "-locked" 997 if not isinstance(sc, (Symbol, Choice)): 1033 if isinstance(sc, (Symbol, Choice)) and tri_val in sc.assignable: 2049 if isinstance(node.item, Choice):
|
| H A D | kconfiglib.py | 3053 choice = Choice() 3060 choice = Choice() 3267 if node.item.__class__ is not Choice: 3628 if node.item.__class__ is Choice: 3647 basedep = node.item if node.item.__class__ is Choice else node.dep 4992 class Choice(object): class 5728 elif self.item.__class__ is Choice: 5861 if sc.__class__ is Choice and sc.is_optional: 6489 node.item.__class__ is not Choice: 6605 if dep.__class__ is Choice \ [all …]
|