Home
last modified time | relevance | path

Searched refs:oldRootTree (Results 1 – 7 of 7) sorted by relevance

/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3basetreeadaptor.c620 …t (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE newRootTree, pANTLR3_BASE_TREE oldRootTree) in becomeRoot() argument
630 return oldRootTree; in becomeRoot()
636 if (oldRootTree == NULL) in becomeRoot()
668 newRootTree->addChild(newRootTree, oldRootTree); in becomeRoot()
674 if (oldRootTree->isNilNode(oldRootTree)) in becomeRoot()
683 oldRootTree->reuse(oldRootTree); in becomeRoot()
691 …t (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE newRootTree, pANTLR3_BASE_TREE oldRootTree) in dbgBecomeRoot() argument
695 t = becomeRoot(adaptor, newRootTree, oldRootTree); in dbgBecomeRoot()
697 adaptor->debugger->becomeRoot(adaptor->debugger, newRootTree, oldRootTree); in dbgBecomeRoot()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DBaseTreeAdaptor.js101 oldRootTree = oldRoot;
118 newRootTree.addChild(oldRootTree);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTreeAdaptor.cs156 ITree oldRootTree = (ITree)oldRoot; in BecomeRoot()
173 newRootTree.AddChild(oldRootTree); in BecomeRoot()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DBaseTreeAdaptor.java140 Tree oldRootTree = (Tree)oldRoot; in becomeRoot() local
156 newRootTree.addChild(oldRootTree); in becomeRoot()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTreeAdaptor.cs191 ITree oldRootTree = (ITree)oldRoot; in BecomeRoot()
211 newRootTree.AddChild( oldRootTree ); in BecomeRoot()
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DBaseTreeAdaptor.as115 var oldRootTree:Tree = Tree(oldRoot);
131 newRootTree.addChild(oldRootTree);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRBaseTreeAdaptor.m179 id oldRootTree = (id)oldRoot;
192 [newRootTree addChild:oldRootTree];