Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/kconfig/
Dkconfiglib.py6157 def rec(subexpr): argument
6158 if subexpr.__class__ is tuple:
6161 rec(subexpr[1])
6164 if subexpr[0] is not NOT:
6165 rec(subexpr[2])
6169 res.add(subexpr)
6209 def rec(subexpr): argument
6210 if subexpr.__class__ is tuple and subexpr[0] is op:
6211 rec(subexpr[1])
6212 rec(subexpr[2])
[all …]