Searched refs:_make_and (Results 1 – 1 of 1) sorted by relevance
/Zephyr-Core-3.5.0/scripts/kconfig/ |
D | kconfiglib.py | 2862 def _make_and(self, e1, e2): member in Kconfig 3153 node.dep = self._make_and(node.dep, 3197 node.visibility = self._make_and(node.visibility, 3605 visible_if = self._make_and(visible_if, node.visibility) 3650 dep = cur.dep = self._make_and(cur.dep, basedep) 3656 self._make_and( 3658 self._make_and(visible_if, dep))) 3662 cur.defaults = [(default, self._make_and(cond, dep)) 3667 cur.ranges = [(low, high, self._make_and(cond, dep)) 3672 cur.selects = [(target, self._make_and(cond, dep)) [all …]
|