Home
last modified time | relevance | path

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

/external/antlr/antlr-3.4/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/antlr-3.4/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/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DBaseTreeAdaptor.java92 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/
DBaseTreeAdaptor.cs134 object newSubTree = DupTree( child, t ); in DupTree()
135 AddChild( newTree, newSubTree ); in DupTree()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3basetreeadaptor.c471 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/
DBaseTreeAdaptor.as63 var newSubTree:Object = dupTreeWithParent(child, t);
64 addChild(newTree, newSubTree);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRBaseTreeAdaptor.m122 id newSubTree = [self dupTree:child Parent:t];
123 [self addChild:newSubTree toTree:newTree];
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtree.py1014 newSubTree = self.dupTree(child, t)
1015 self.addChild(newTree, newSubTree)