Home
last modified time | relevance | path

Searched refs:expr_value (Results 1 – 4 of 4) sorted by relevance

/hal_nxp-3.6.0/mcux/mcux-sdk/scripts/kconfig/
Dkconfiglib.py1140 if expr_value(cond):
1618 if node.item is MENU and expr_value(node.dep) and \
1619 expr_value(node.visibility) and \
1651 elif expr_value(node.dep) and \
1652 ((item is MENU and expr_value(node.visibility)) or
1710 sym.visibility <= expr_value(sym.rev_dep):
1988 return expr_value(self._expect_expr_and_eol())
4323 if expr_value(cond):
4366 if expr_value(cond):
4411 if expr_value(cond):
[all …]
Dkconfig.py20 from kconfiglib import Kconfig, split_expr, expr_value, expr_str, BOOL, \
181 return [dep for dep in deps if expr_value(dep) < sym.user_value]
183 return [dep for dep in deps if expr_value(dep) == 0]
Dguiconfig.py84 expr_str, expr_value, split_expr, \
772 return node.prompt and expr_value(node.prompt[1]) and not \
773 (node.item == MENU and not expr_value(node.visibility))
1009 if not (node.prompt and expr_value(node.prompt[1])):
1316 if expr_value(cond):
1339 if expr_value(cond):
2126 .format(TRI_TO_STR[expr_value(sc.direct_dep)],
2152 s += ' (={})'.format(TRI_TO_STR[expr_value(val)])
2161 .format(TRI_TO_STR[expr_value(cond)],
2192 s += " (={})".format(TRI_TO_STR[expr_value(term)])
[all …]
Dmenuconfig.py221 expr_str, expr_value, split_expr, \
1563 return node.prompt and expr_value(node.prompt[1]) and not \
1564 (node.item == MENU and not expr_value(node.visibility))
1637 if not (node.prompt and expr_value(node.prompt[1])):
2646 .format(TRI_TO_STR[expr_value(sc.direct_dep)],
2672 s += ' (={})'.format(TRI_TO_STR[expr_value(val)])
2681 .format(TRI_TO_STR[expr_value(cond)],
2712 s += " (={})".format(TRI_TO_STR[expr_value(term)])
2726 sis = [si for si in split_expr(expr, OR) if expr_value(si) == val]
3094 if expr_value(cond):
[all …]