Home
last modified time | relevance | path

Searched refs:Choice (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-3.6.0/mcux/mcux-sdk/scripts/kconfig/
Dmenuconfig.py218 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 …]
Dguiconfig.py81 from kconfiglib import Symbol, Choice, MENU, COMMENT, MenuNode, \
831 elif isinstance(node.item, Choice) and node.item.tri_value == 2:
879 return "" if isinstance(item, Choice) else item.str_value + "-locked"
1003 if not isinstance(sc, (Symbol, Choice)):
1039 if isinstance(sc, (Symbol, Choice)) and tri_val in sc.assignable:
2055 if isinstance(node.item, Choice):
Dkconfiglib.py3053 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 …]