Home | History | Annotate | Download | only in text

Lines Matching defs:addRuleRootNodes

368        //           addRuleRootNodes    Recursively walk a parse tree, adding all nodes flagged
372 void addRuleRootNodes(List<RBBINode> dest, RBBINode node) {
382 addRuleRootNodes(dest, node.fLeftChild);
383 addRuleRootNodes(dest, node.fRightChild);
408 addRuleRootNodes(ruleRootNodes, tree);