Searched defs:newRoot (Results 1 - 25 of 46) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeException.h33 id<ANTLRTree> newRoot; variable
36 + (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeException.h33 id<ANTLRTree> newRoot; variable
36 + (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeException.h33 id<ANTLRTree> newRoot; variable
36 + (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeException.h33 id<ANTLRBaseTree> newRoot; variable
36 + (id) newException:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
37 - (id) initWithOldRoot:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DTraceDebugEventListener.cs115 public override void BecomeRoot( object newRoot, object oldRoot ) argument
117 Console.Out.WriteLine( "becomeRoot " + adaptor.GetUniqueID( newRoot ) + ", " +
H A DBlankDebugEventListener.cs152 public virtual void BecomeRoot( object newRoot, object oldRoot ) argument
H A DDebugEventHub.cs337 public virtual void BecomeRoot( object newRoot, object oldRoot ) argument
342 listener.BecomeRoot( newRoot, oldRoot );
H A DDebugEventRepeater.cs181 public virtual void BecomeRoot( object newRoot, object oldRoot ) argument
183 _listener.BecomeRoot( newRoot, oldRoot );
H A DDebugEventSocketProxy.cs381 public override void BecomeRoot( object newRoot, object oldRoot ) argument
383 int newRootID = adaptor.GetUniqueID( newRoot );
H A DDebugTreeAdaptor.cs160 public virtual object BecomeRoot( object newRoot, object oldRoot ) argument
162 object n = adaptor.BecomeRoot( newRoot, oldRoot );
163 dbg.BecomeRoot( newRoot, oldRoot );
178 public virtual object BecomeRoot( IToken newRoot, object oldRoot ) argument
180 object n = this.Create( newRoot );
182 dbg.BecomeRoot( newRoot, oldRoot );
/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
103 Console.Out.WriteLine("becomeRoot " + adaptor.GetUniqueID(newRoot) + ", " +
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
140 object n = this.Create(newRoot);
142 dbg.BecomeRoot(newRoot, oldRoot);
H A DIDebugEventListener.cs347 * than the TreeAdaptor.becomeRoot() newRoot parameter.
361 void BecomeRoot(object newRoot, object oldRoot); argument
/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
82 System.out.println("becomeRoot "+adaptor.getUniqueID(newRoot)+", "+
/external/jdiff/src/jdiff/
H A DJDiff.java41 protected boolean startGeneration(RootDoc newRoot) { argument
47 RootDocToXML.writeXML(newRoot);
/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.
595 * If newRoot is a nil-rooted single child tree, use the single
603 * If oldRoot was null, it's ok, just return newRoot (even if isNilNode).
610 * Return newRoot. Throw an exception if newRoot i
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...]
/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.
132 * If newRoot is a nil-rooted single child tree, use the single
138 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
143 * Return newRoot. Throw an exception if newRoot is not a
145 * node. If newRoot is ^(nil x) return x as newRoot.
147 * Be advised that it's ok for newRoot to point at oldRoot's
153 public virtual object BecomeRoot(object newRoot, objec argument
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.
122 * If newRoot is a nil-rooted single child tree, use the single
128 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
133 * Return newRoot. Throw an exception if newRoot is not a
135 * node. If newRoot is ^(nil x) return x as newRoot.
137 * Be advised that it's ok for newRoot to point at oldRoot's
143 object BecomeRoot(object newRoot, objec argument
194 BecomeRoot(IToken newRoot, object oldRoot) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
H A DIDebugEventListener.cs349 * than the TreeAdaptor.becomeRoot() newRoot parameter.
363 void BecomeRoot( object newRoot, object oldRoot ); argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DBaseTreeAdaptor.cs158 * If oldRoot is a nil root, just copy or move the children to newRoot.
159 * If not a nil root, make oldRoot a child of newRoot.
166 * If newRoot is a nil-rooted single child tree, use the single
172 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
177 * Return newRoot. Throw an exception if newRoot is not a
179 * node. If newRoot is ^(nil x) return x as newRoot.
181 * Be advised that it's ok for newRoot to point at oldRoot's
187 public virtual object BecomeRoot( object newRoot, objec argument
237 BecomeRoot( IToken newRoot, object oldRoot ) argument
[all...]
H A DITreeAdaptor.cs170 * If oldRoot is a nil root, just copy or move the children to newRoot.
171 * If not a nil root, make oldRoot a child of newRoot.
178 * If newRoot is a nil-rooted single child tree, use the single
184 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
189 * Return newRoot. Throw an exception if newRoot is not a
191 * node. If newRoot is ^(nil x) return x as newRoot.
193 * Be advised that it's ok for newRoot to point at oldRoot's
199 object BecomeRoot( object newRoot, objec argument
250 BecomeRoot( IToken newRoot, object oldRoot ) argument
[all...]
/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.
110 * If newRoot is a nil-rooted single child tree, use the single
116 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
121 * Return newRoot. Throw an exception if newRoot is not a
123 * node. If newRoot is ^(nil x) return x as newRoot.
125 * Be advised that it's ok for newRoot to point at oldRoot's
131 T BecomeRoot(T newRoot, argument
182 BecomeRoot(IToken newRoot, T oldRoot) argument
[all...]

Completed in 345 milliseconds

12