Searched refs:rootNode (Results 1 – 1 of 1) sorted by relevance
162 auto *rootNode = allocator.Allocate(); in buildPredicateTree() local163 new (rootNode) PredNode; in buildPredicateTree()164 rootNode->kind = getPredCombinerKind(root); in buildPredicateTree()165 rootNode->predicate = &root; in buildPredicateTree()167 rootNode->expr = root.getCondition(); in buildPredicateTree()168 performSubstitutions(rootNode->expr, substitutions); in buildPredicateTree()169 return rootNode; in buildPredicateTree()175 if (rootNode->kind == PredCombinerKind::SubstLeaves) { in buildPredicateTree()181 } else if (rootNode->kind == PredCombinerKind::Concat) { in buildPredicateTree()194 rootNode->children.push_back(childTree); in buildPredicateTree()[all …]