Home
last modified time | relevance | path

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

/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DBaseTreeAdaptor.js47 i, child, newSubTree;
50 newSubTree = this.dupTree(child, t);
51 this.addChild(newTree, newSubTree);
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTreeAdaptor.cs102 object newSubTree = DupTree(child, t); in DupTree()
103 AddChild(newTree, newSubTree); in DupTree()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DBaseTreeAdaptor.java96 Object newSubTree = dupTree(child, t); in dupTree() local
97 addChild(newTree, newSubTree); in dupTree()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTreeAdaptor.cs134 object newSubTree = DupTree( child, t ); in DupTree()
135 AddChild( newTree, newSubTree ); in DupTree()
/external/antlr/runtime/C/src/
Dantlr3basetreeadaptor.c471 pANTLR3_BASE_TREE newSubTree; in dupTreeTT() local
490 newSubTree = (pANTLR3_BASE_TREE)adaptor->dupTreeTT (adaptor, child, t); in dupTreeTT()
491 adaptor->addChild (adaptor, newTree, newSubTree); in dupTreeTT()
/external/antlr/runtime/Cpp/include/
Dantlr3commontreeadaptor.inl25 TreeType* newSubTree; local
43 newSubTree = this->dupTreeTT(child, t);
44 this->addChild(newTree, newSubTree);
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DBaseTreeAdaptor.as63 var newSubTree:Object = dupTreeWithParent(child, t);
64 addChild(newTree, newSubTree);
/external/antlr/runtime/ObjC/Framework/
DBaseTreeAdaptor.m122 id newSubTree = [self dupTree:child Parent:t];
123 [self addChild:newSubTree toTree:newTree];
/external/antlr/runtime/Python3/antlr3/
Dtree.py1007 newSubTree = self.dupTree(child, t)
1008 self.addChild(newTree, newSubTree)
/external/antlr/runtime/Python/antlr3/
Dtree.py1014 newSubTree = self.dupTree(child, t)
1015 self.addChild(newTree, newSubTree)