Home | History | Annotate | Download | only in text

Lines Matching defs:addRuleRootNodes

369        //           addRuleRootNodes    Recursively walk a parse tree, adding all nodes flagged
373 void addRuleRootNodes(List<RBBINode> dest, RBBINode node) {
383 addRuleRootNodes(dest, node.fLeftChild);
384 addRuleRootNodes(dest, node.fRightChild);
409 addRuleRootNodes(ruleRootNodes, tree);