Searched refs:expr_value (Results 1 – 4 of 4) sorted by relevance
| /Zephyr-4.2.1/scripts/kconfig/ |
| D | kconfig.py | 38 expr_value, 223 return [dep for dep in deps if expr_value(dep) < sym.user_value] 225 return [dep for dep in deps if expr_value(dep) == 0] 266 selectors = [s for s in split_expr(dep_expr, OR) if expr_value(s) == 2] 277 selectors = [s for s in split_expr(dep_expr, OR) if expr_value(s) == 2] 287 selectors = [s for s in split_expr(dep_expr, OR) if expr_value(s) == 2]
|
| D | kconfiglib.py | 1141 if expr_value(cond): 1615 if node.item is MENU and expr_value(node.dep) and \ 1616 expr_value(node.visibility) and \ 1648 elif expr_value(node.dep) and \ 1649 ((item is MENU and expr_value(node.visibility)) or 1707 sym.visibility <= expr_value(sym.rev_dep): 1985 return expr_value(self._expect_expr_and_eol()) 4381 if expr_value(cond): 4425 if expr_value(cond): 4473 if expr_value(cond): [all …]
|
| D | guiconfig.py | 85 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 …]
|
| D | menuconfig.py | 221 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 …]
|