Searched defs:oldRoot (Results 1 - 25 of 33) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeException.h32 id<ANTLRTree> oldRoot; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeException.h32 id<ANTLRTree> oldRoot; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeException.h32 id<ANTLRTree> oldRoot; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeException.h32 id<ANTLRBaseTree> oldRoot; variable
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTraceDebugEventListener.cs102 public override void BecomeRoot(object newRoot, object oldRoot) { argument
104 adaptor.GetUniqueID(oldRoot));
H A DBlankDebugEventListener.cs120 public virtual void BecomeRoot(object newRoot, object oldRoot) { argument
H A DDebugEventHub.cs276 public virtual void BecomeRoot(object newRoot, object oldRoot) { argument
279 listener.BecomeRoot(newRoot, oldRoot);
H A DDebugEventRepeater.cs149 public virtual void BecomeRoot(object newRoot, object oldRoot) { argument
150 _listener.BecomeRoot(newRoot, oldRoot);
H A DDebugTreeAdaptor.cs124 public virtual object BecomeRoot(object newRoot, object oldRoot) { argument
125 object n = adaptor.BecomeRoot(newRoot, oldRoot);
126 dbg.BecomeRoot(newRoot, oldRoot);
139 public virtual object BecomeRoot(IToken newRoot, object oldRoot) { argument
141 adaptor.BecomeRoot(n, oldRoot);
142 dbg.BecomeRoot(newRoot, oldRoot);
H A DIDebugEventListener.cs361 void BecomeRoot(object newRoot, object oldRoot); argument
H A DDebugEventSocketProxy.cs336 public override void BecomeRoot(object newRoot, object oldRoot) { argument
338 int oldRootID = adaptor.GetUniqueID(oldRoot);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DTraceDebugEventListener.java81 public void becomeRoot(Object newRoot, Object oldRoot) { argument
83 adaptor.getUniqueID(oldRoot));
H A DBlankDebugEventListener.java72 public void becomeRoot(Object newRoot, Object oldRoot) {} argument
H A DDebugEventHub.java272 public void becomeRoot(Object newRoot, Object oldRoot) { argument
275 listener.becomeRoot(newRoot, oldRoot);
H A DDebugEventListener.java306 public void becomeRoot(Object newRoot, Object oldRoot); argument
H A DDebugEventRepeater.java83 public void becomeRoot(Object newRoot, Object oldRoot) { listener.becomeRoot(newRoot, oldRoot); } argument
H A DDebugTreeAdaptor.java120 public Object becomeRoot(Object newRoot, Object oldRoot) { argument
121 Object n = adaptor.becomeRoot(newRoot, oldRoot);
122 dbg.becomeRoot(newRoot, oldRoot);
135 public Object becomeRoot(Token newRoot, Object oldRoot) { argument
137 adaptor.becomeRoot(n, oldRoot);
138 dbg.becomeRoot(newRoot, oldRoot);
H A DDebugEventSocketProxy.java302 public void becomeRoot(Object newRoot, Object oldRoot) { argument
304 int oldRootID = adaptor.getUniqueID(oldRoot);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetreeadaptor.c51 static pANTLR3_BASE_TREE becomeRoot (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE newRoot, pANTLR3_BASE_TREE oldRoot);
52 static pANTLR3_BASE_TREE dbgBecomeRoot (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE newRoot, pANTLR3_BASE_TREE oldRoot);
56 static pANTLR3_BASE_TREE becomeRootToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, void * newRoot, pANTLR3_BASE_TREE oldRoot);
57 static pANTLR3_BASE_TREE dbgBecomeRootToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, void * newRoot, pANTLR3_BASE_TREE oldRoot);
587 /** If oldRoot is a nil root, just copy or move the children to newRoot.
588 * If not a nil root, make oldRoot a child of newRoot.
603 * If oldRoot was null, it's ok, just return newRoot (even if isNilNode).
614 * Be advised that it's ok for newRoot to point at oldRoot's
664 /* Add old root into new root. addChild takes care of the case where oldRoot
740 becomeRootToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, void * newRoot, pANTLR3_BASE_TREE oldRoot) argument
745 dbgBecomeRootToken(pANTLR3_BASE_TREE_ADAPTOR adaptor, void * newRoot, pANTLR3_BASE_TREE oldRoot) argument
[all...]
H A Dantlr3debughandlers.c84 static void becomeRoot (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE newRoot, pANTLR3_BASE_TREE oldRoot);
1013 becomeRoot (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE newRoot, pANTLR3_BASE_TREE oldRoot) argument
1018 delboy->adaptor->getUniqueID(delboy->adaptor, oldRoot)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTreeAdaptor.cs124 * If oldRoot is a nil root, just copy or move the children to newRoot.
125 * If not a nil root, make oldRoot a child of newRoot.
138 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
147 * Be advised that it's ok for newRoot to point at oldRoot's
153 public virtual object BecomeRoot(object newRoot, object oldRoot) { argument
154 //System.out.println("becomeroot new "+newRoot.toString()+" old "+oldRoot);
156 ITree oldRootTree = (ITree)oldRoot;
157 if (oldRoot == null) {
170 // add oldRoot to newRoot; addChild takes care of case where oldRoot
194 BecomeRoot(IToken newRoot, object oldRoot) argument
[all...]
H A DITreeAdaptor.cs114 * If oldRoot is a nil root, just copy or move the children to newRoot.
115 * If not a nil root, make oldRoot a child of newRoot.
128 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
137 * Be advised that it's ok for newRoot to point at oldRoot's
143 object BecomeRoot(object newRoot, object oldRoot); argument
178 * Create a node for newRoot make it the root of oldRoot.
179 * If oldRoot is a nil root, just copy or move the children to newRoot.
180 * If not a nil root, make oldRoot a child of newRoot.
194 object BecomeRoot(IToken newRoot, object oldRoot); argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs102 * If oldRoot is a nil root, just copy or move the children to newRoot.
103 * If not a nil root, make oldRoot a child of newRoot.
116 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
125 * Be advised that it's ok for newRoot to point at oldRoot's
131 T BecomeRoot(T newRoot, T oldRoot); argument
166 * Create a node for newRoot make it the root of oldRoot.
167 * If oldRoot is a nil root, just copy or move the children to newRoot.
168 * If not a nil root, make oldRoot a child of newRoot.
182 T BecomeRoot(IToken newRoot, T oldRoot); argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.java111 /** If oldRoot is a nil root, just copy or move the children to newRoot.
112 * If not a nil root, make oldRoot a child of newRoot.
123 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
132 * Be advised that it's ok for newRoot to point at oldRoot's
137 public Object becomeRoot(Object newRoot, Object oldRoot) { argument
138 //System.out.println("becomeroot new "+newRoot.toString()+" old "+oldRoot);
140 Tree oldRootTree = (Tree)oldRoot;
141 if ( oldRoot==null ) {
153 // add oldRoot to newRoot; addChild takes care of case where oldRoot
178 becomeRoot(Token newRoot, Object oldRoot) argument
[all...]
H A DTreeAdaptor.java96 /** If oldRoot is a nil root, just copy or move the children to newRoot.
97 * If not a nil root, make oldRoot a child of newRoot.
108 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
117 * Be advised that it's ok for newRoot to point at oldRoot's
122 public Object becomeRoot(Object newRoot, Object oldRoot); argument
150 /** Create a node for newRoot make it the root of oldRoot.
151 * If oldRoot is a nil root, just copy or move the children to newRoot.
152 * If not a nil root, make oldRoot a child of newRoot.
161 public Object becomeRoot(Token newRoot, Object oldRoot); argument

Completed in 1189 milliseconds

12