HomeSort by relevance Sort by last modified time
    Searched refs:oldRoot (Results 1 - 25 of 192) sorted by null

1 2 3 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeException.h 32 id<ANTLRTree> oldRoot;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeException.h 32 id<ANTLRTree> oldRoot;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeException.h 32 id<ANTLRTree> oldRoot;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeException.h 32 id<ANTLRBaseTree> oldRoot;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeFixture.cs 177 CommonTree oldRoot = new CommonTree((IToken)null);
178 oldRoot.AddChild(new CommonTree(new CommonToken(101)));
179 oldRoot.AddChild(new CommonTree(new CommonToken(102)));
180 oldRoot.AddChild(new CommonTree(new CommonToken(103)));
183 adaptor.BecomeRoot(newRoot, oldRoot);
193 CommonTree oldRoot = new CommonTree(new CommonToken(101));
194 oldRoot.AddChild(new CommonTree(new CommonToken(102)));
195 oldRoot.AddChild(new CommonTree(new CommonToken(103)));
198 adaptor.BecomeRoot(newRoot, oldRoot);
209 CommonTree oldRoot = new CommonTree((IToken)null)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 171 CommonTree oldRoot = new CommonTree((Token)null);
172 oldRoot.addChild(new CommonTree(new CommonToken(101)));
173 oldRoot.addChild(new CommonTree(new CommonToken(102)));
174 oldRoot.addChild(new CommonTree(new CommonToken(103)));
177 adaptor.becomeRoot(newRoot, oldRoot);
185 CommonTree oldRoot = new CommonTree(new CommonToken(101));
186 oldRoot.addChild(new CommonTree(new CommonToken(102)));
187 oldRoot.addChild(new CommonTree(new CommonToken(103)));
190 adaptor.becomeRoot(newRoot, oldRoot);
199 CommonTree oldRoot = new CommonTree((Token)null)
    [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.
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);
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);
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.
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) {
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
    [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.
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);
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);
  /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.
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);
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);
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.
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) {
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
    [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) {
141 adaptor.BecomeRoot(n, oldRoot);
142 dbg.BecomeRoot(newRoot, oldRoot);
TraceDebugEventListener.cs 102 public override void BecomeRoot(object newRoot, object oldRoot) {
104 adaptor.GetUniqueID(oldRoot));
IDebugEventListener.cs 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) {
137 adaptor.becomeRoot(n, oldRoot);
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) {
83 adaptor.getUniqueID(oldRoot));
BlankDebugEventListener.java 72 public void becomeRoot(Object newRoot, Object oldRoot) {}
DebugEventListener.java 306 public void becomeRoot(Object newRoot, Object oldRoot);
  /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.
81 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
90 * Be advised that it's ok for newRoot to point at oldRoot's
95 becomeRoot: function(newRoot, oldRoot) {
101 oldRootTree = oldRoot;
102 if ( !oldRoot ) {
115 // add oldRoot to newRoot; addChild takes care of case where oldRoot
116 // is a flat list (i.e., nil-rooted tree). All children of oldRoot
    [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 )
181 adaptor.BecomeRoot( n, oldRoot );
182 dbg.BecomeRoot( newRoot, oldRoot );
TraceDebugEventListener.cs 115 public override void BecomeRoot( object newRoot, object oldRoot )
118 adaptor.GetUniqueID( oldRoot ) );
  /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.
184 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
193 * Be advised that it's ok for newRoot to point at oldRoot's
199 object BecomeRoot( object newRoot, object oldRoot );
234 * Create a node for newRoot make it the root of oldRoot.
235 * If oldRoot is a nil root, just copy or move the children to newRoot.
236 * If not a nil root, make oldRoot a child of newRoot.
250 object BecomeRoot( IToken newRoot, object oldRoot );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 363 void BecomeRoot( object newRoot, object oldRoot );
  /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.
94 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
103 * Be advised that it's ok for newRoot to point at oldRoot's
108 public function becomeRoot(newRoot:Object, oldRoot:Object):Object {
115 var oldRootTree:Tree = Tree(oldRoot);
116 if ( oldRoot==null ) {
128 // add oldRoot to newRoot; addChild takes care of case where oldRoot
129 // is a flat list (i.e., nil-rooted tree). All children of oldRoot
    [all...]

Completed in 670 milliseconds

1 2 3 4 5 6 7 8