Searched refs:newSubTree (Results 1 – 10 of 10) sorted by relevance
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.js | 47 i, child, newSubTree; 50 newSubTree = this.dupTree(child, t); 51 this.addChild(newTree, newSubTree);
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | BaseTreeAdaptor.cs | 102 object newSubTree = DupTree(child, t); in DupTree() 103 AddChild(newTree, newSubTree); in DupTree()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.java | 96 Object newSubTree = dupTree(child, t); in dupTree() local 97 addChild(newTree, newSubTree); in dupTree()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | BaseTreeAdaptor.cs | 134 object newSubTree = DupTree( child, t ); in DupTree() 135 AddChild( newTree, newSubTree ); in DupTree()
|
/external/antlr/runtime/C/src/ |
D | antlr3basetreeadaptor.c | 471 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/ |
D | antlr3commontreeadaptor.inl | 25 TreeType* newSubTree; local 43 newSubTree = this->dupTreeTT(child, t); 44 this->addChild(newTree, newSubTree);
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.as | 63 var newSubTree:Object = dupTreeWithParent(child, t); 64 addChild(newTree, newSubTree);
|
/external/antlr/runtime/ObjC/Framework/ |
D | BaseTreeAdaptor.m | 122 id newSubTree = [self dupTree:child Parent:t]; 123 [self addChild:newSubTree toTree:newTree];
|
/external/antlr/runtime/Python3/antlr3/ |
D | tree.py | 1007 newSubTree = self.dupTree(child, t) 1008 self.addChild(newTree, newSubTree)
|
/external/antlr/runtime/Python/antlr3/ |
D | tree.py | 1014 newSubTree = self.dupTree(child, t) 1015 self.addChild(newTree, newSubTree)
|