Searched refs:_make_and (Results 1 – 1 of 1) sorted by relevance
/Zephyr-latest/scripts/kconfig/ |
D | kconfiglib.py | 2866 def _make_and(self, e1, e2): member in Kconfig 3166 node.dep = self._make_and(node.dep, 3210 node.visibility = self._make_and(node.visibility, 3581 default = (d[0], self._make_and(sym.direct_dep, d[1])) 3635 visible_if = self._make_and(visible_if, node.visibility) 3680 dep = cur.dep = self._make_and(cur.dep, basedep) 3686 self._make_and( 3688 self._make_and(visible_if, dep))) 3692 cur.defaults = [(default, self._make_and(cond, dep)) 3697 cur.ranges = [(low, high, self._make_and(cond, dep)) [all …]
|