Lines Matching refs:subexpr
6113 def rec(subexpr): argument
6114 if subexpr.__class__ is tuple:
6117 rec(subexpr[1])
6120 if subexpr[0] is not NOT:
6121 rec(subexpr[2])
6125 res.add(subexpr)
6165 def rec(subexpr): argument
6166 if subexpr.__class__ is tuple and subexpr[0] is op:
6167 rec(subexpr[1])
6168 rec(subexpr[2])
6170 res.append(subexpr)