Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/kconfig/
Dkconfig.py34 expr_value,
210 return [dep for dep in deps if expr_value(dep) < sym.user_value]
212 return [dep for dep in deps if expr_value(dep) == 0]
253 selectors = [s for s in split_expr(dep_expr, OR) if expr_value(s) == 2]
264 selectors = [s for s in split_expr(dep_expr, OR) if expr_value(s) == 2]
Dkconfiglib.py1142 if expr_value(cond):
1619 if node.item is MENU and expr_value(node.dep) and \
1620 expr_value(node.visibility) and \
1652 elif expr_value(node.dep) and \
1653 ((item is MENU and expr_value(node.visibility)) or
1711 sym.visibility <= expr_value(sym.rev_dep):
1989 return expr_value(self._expect_expr_and_eol())
4361 if expr_value(cond):
4404 if expr_value(cond):
4449 if expr_value(cond):
[all …]
Dguiconfig.py85 expr_str, expr_value, split_expr, \
773 return node.prompt and expr_value(node.prompt[1]) and not \
774 (node.item == MENU and not expr_value(node.visibility))
1010 if not (node.prompt and expr_value(node.prompt[1])):
1317 if expr_value(cond):
1340 if expr_value(cond):
2127 .format(TRI_TO_STR[expr_value(sc.direct_dep)],
2153 s += ' (={})'.format(TRI_TO_STR[expr_value(val)])
2162 .format(TRI_TO_STR[expr_value(cond)],
2193 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])):
2652 .format(TRI_TO_STR[expr_value(sc.direct_dep)],
2678 s += ' (={})'.format(TRI_TO_STR[expr_value(val)])
2687 .format(TRI_TO_STR[expr_value(cond)],
2718 s += " (={})".format(TRI_TO_STR[expr_value(term)])
2732 sis = [si for si in split_expr(expr, OR) if expr_value(si) == val]
3100 if expr_value(cond):
[all …]