Searched refs:newSubTree (Results 1 – 8 of 8) sorted by relevance
/external/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.java | 92 Object newSubTree = dupTree(child, t); in dupTree() local 93 addChild(newTree, newSubTree); in dupTree()
|
/external/antlr/antlr-3.4/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/antlr-3.4/runtime/C/src/ |
D | antlr3basetreeadaptor.c | 471 pANTLR3_BASE_TREE newSubTree; in dupTreeTT() local 490 newSubTree = adaptor->dupTreeTT (adaptor, child, t); in dupTreeTT() 491 adaptor->addChild (adaptor, newTree, newSubTree); in dupTreeTT()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.as | 63 var newSubTree:Object = dupTreeWithParent(child, t); 64 addChild(newTree, newSubTree);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRBaseTreeAdaptor.m | 122 id newSubTree = [self dupTree:child Parent:t]; 123 [self addChild:newSubTree toTree:newTree];
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | tree.py | 1014 newSubTree = self.dupTree(child, t) 1015 self.addChild(newTree, newSubTree)
|