/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTreeException.h | 33 id<ANTLRTree> newRoot; 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/ |
ANTLRTreeException.h | 33 id<ANTLRTree> newRoot; 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/ |
ANTLRTreeException.h | 33 id<ANTLRTree> newRoot; 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/ |
ANTLRTreeException.h | 33 id<ANTLRBaseTree> newRoot; 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/JavaScript/src/org/antlr/runtime/tree/ |
BaseTreeAdaptor.js | 69 /** If oldRoot is a nil root, just copy or move the children to newRoot. 70 * If not a nil root, make oldRoot a child of newRoot. 75 * If newRoot is a nil-rooted single child tree, use the single 81 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 86 * Return newRoot. Throw an exception if newRoot is not a 88 * node. If newRoot is ^(nil x) return x as newRoot. 90 * Be advised that it's ok for newRoot to point at oldRoot's 95 becomeRoot: function(newRoot, oldRoot) [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
BaseTreeAdaptor.as | 82 /** If oldRoot is a nil root, just copy or move the children to newRoot. 83 * If not a nil root, make oldRoot a child of newRoot. 88 * If newRoot is a nil-rooted single child tree, use the single 94 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 99 * Return newRoot. Throw an exception if newRoot is not a 101 * node. If newRoot is ^(nil x) return x as newRoot. 103 * Be advised that it's ok for newRoot to point at oldRoot's 108 public function becomeRoot(newRoot:Object, oldRoot:Object):Object { [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
ITreeAdaptor.cs | 114 * 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, object oldRoot) [all...] |
BaseTreeAdaptor.cs | 124 * 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, object oldRoot) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/ |
ITreeAdaptor`1.cs | 102 * 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, T oldRoot) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeAdaptor.java | 96 /** 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. 102 * If newRoot is a nil-rooted single child tree, use the single 108 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 113 * Return newRoot. Throw an exception if newRoot is not a 115 * node. If newRoot is ^(nil x) return x as newRoot. 117 * Be advised that it's ok for newRoot to point at oldRoot's 122 public Object becomeRoot(Object newRoot, Object oldRoot) [all...] |
BaseTreeAdaptor.java | 111 /** 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. 117 * If newRoot is a nil-rooted single child tree, use the single 123 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 128 * Return newRoot. Throw an exception if newRoot is not a 130 * node. If newRoot is ^(nil x) return x as newRoot. 132 * Be advised that it's ok for newRoot to point at oldRoot's 137 public Object becomeRoot(Object newRoot, Object oldRoot) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeAdaptor.cs | 124 public virtual object BecomeRoot(object newRoot, object oldRoot) { 125 object n = adaptor.BecomeRoot(newRoot, oldRoot); 126 dbg.BecomeRoot(newRoot, oldRoot); 139 public virtual object BecomeRoot(IToken newRoot, object oldRoot) { 140 object n = this.Create(newRoot); 142 dbg.BecomeRoot(newRoot, oldRoot);
|
TraceDebugEventListener.cs | 102 public override void BecomeRoot(object newRoot, object oldRoot) { 103 Console.Out.WriteLine("becomeRoot " + adaptor.GetUniqueID(newRoot) + ", " +
|
IDebugEventListener.cs | 347 * than the TreeAdaptor.becomeRoot() newRoot parameter. 361 void BecomeRoot(object newRoot, object oldRoot);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugTreeAdaptor.java | 120 public Object becomeRoot(Object newRoot, Object oldRoot) { 121 Object n = adaptor.becomeRoot(newRoot, oldRoot); 122 dbg.becomeRoot(newRoot, oldRoot); 135 public Object becomeRoot(Token newRoot, Object oldRoot) { 136 Object n = this.create(newRoot); 138 dbg.becomeRoot(newRoot, oldRoot);
|
DebugEventRepeater.java | 83 public void becomeRoot(Object newRoot, Object oldRoot) { listener.becomeRoot(newRoot, oldRoot); }
|
TraceDebugEventListener.java | 81 public void becomeRoot(Object newRoot, Object oldRoot) { 82 System.out.println("becomeRoot "+adaptor.getUniqueID(newRoot)+", "+
|
BlankDebugEventListener.java | 72 public void becomeRoot(Object newRoot, Object oldRoot) {}
|
DebugEventListener.java | 293 * than the TreeAdaptor.becomeRoot() newRoot parameter. 306 public void becomeRoot(Object newRoot, Object oldRoot);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
ITreeFixture.cs | 175 CommonTree newRoot = new CommonTree(new CommonToken(5)); 183 adaptor.BecomeRoot(newRoot, oldRoot); 184 newRoot.SanityCheckParentAndChildIndexes(); 191 CommonTree newRoot = new CommonTree(new CommonToken(5)); 198 adaptor.BecomeRoot(newRoot, oldRoot); 199 newRoot.SanityCheckParentAndChildIndexes(); 206 CommonTree newRoot = new CommonTree((IToken)null); 207 newRoot.AddChild(new CommonTree(new CommonToken(5))); 215 adaptor.BecomeRoot(newRoot, oldRoot); 216 newRoot.SanityCheckParentAndChildIndexes() [all...] |
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestTrees.java | 169 CommonTree newRoot = new CommonTree(new CommonToken(5)); 177 adaptor.becomeRoot(newRoot, oldRoot); 178 newRoot.sanityCheckParentAndChildIndexes(); 183 CommonTree newRoot = new CommonTree(new CommonToken(5)); 190 adaptor.becomeRoot(newRoot, oldRoot); 191 newRoot.sanityCheckParentAndChildIndexes(); 196 CommonTree newRoot = new CommonTree((Token)null); 197 newRoot.addChild(new CommonTree(new CommonToken(5))); 205 adaptor.becomeRoot(newRoot, oldRoot); 206 newRoot.sanityCheckParentAndChildIndexes() [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeAdaptor.cs | 160 public virtual object BecomeRoot( object newRoot, object oldRoot ) 162 object n = adaptor.BecomeRoot( newRoot, oldRoot ); 163 dbg.BecomeRoot( newRoot, oldRoot ); 178 public virtual object BecomeRoot( IToken newRoot, object oldRoot ) 180 object n = this.Create( newRoot ); 182 dbg.BecomeRoot( newRoot, oldRoot );
|
TraceDebugEventListener.cs | 115 public override void BecomeRoot( object newRoot, object oldRoot ) 117 Console.Out.WriteLine( "becomeRoot " + adaptor.GetUniqueID( newRoot ) + ", " +
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeAdaptor.cs | 170 * 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, object oldRoot ) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/ |
IDebugEventListener.cs | 349 * than the TreeAdaptor.becomeRoot() newRoot parameter. 363 void BecomeRoot( object newRoot, object oldRoot );
|