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

1 2 3

  /external/antlr/runtime/ObjC/Framework/
TreeException.h 33 id<BaseTree> newRoot;
36 + (id) newException:(id<BaseTree>)theOldRoot newRoot:(id<BaseTree>)theNewRoot stream:(id<IntStream>)aStream;
37 - (id) initWithOldRoot:(id<BaseTree>)theOldRoot newRoot:(id<BaseTree>)theNewRoot stream:(id<IntStream>)aStream;
  /external/antlr/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/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/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/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/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 116 /** If oldRoot is a nil root, just copy or move the children to newRoot.
117 * 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 public Object becomeRoot(Object newRoot, Object oldRoot)
    [all...]
  /external/antlr/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);
DebugEventRepeater.cs 149 public virtual void BecomeRoot(object newRoot, object oldRoot) {
150 _listener.BecomeRoot(newRoot, oldRoot);
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeAdaptor.java 128 public Object becomeRoot(Object newRoot, Object oldRoot) {
129 Object n = adaptor.becomeRoot(newRoot, oldRoot);
130 dbg.becomeRoot(newRoot, oldRoot);
145 public Object becomeRoot(Token newRoot, Object oldRoot) {
146 Object n = this.create(newRoot);
148 dbg.becomeRoot(newRoot, oldRoot);
TraceDebugEventListener.java 90 public void becomeRoot(Object newRoot, Object oldRoot) {
91 System.out.println("becomeRoot "+adaptor.getUniqueID(newRoot)+", "+
DebugEventListener.java 293 * than the TreeAdaptor.becomeRoot() newRoot parameter.
306 public void becomeRoot(Object newRoot, Object oldRoot);
  /external/antlr/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/tool/src/test/java/org/antlr/test/
TestTrees.java 172 CommonTree newRoot = new CommonTree(new CommonToken(5));
180 adaptor.becomeRoot(newRoot, oldRoot);
181 newRoot.sanityCheckParentAndChildIndexes();
186 CommonTree newRoot = new CommonTree(new CommonToken(5));
193 adaptor.becomeRoot(newRoot, oldRoot);
194 newRoot.sanityCheckParentAndChildIndexes();
199 CommonTree newRoot = new CommonTree((Token)null);
200 newRoot.addChild(new CommonTree(new CommonToken(5)));
208 adaptor.becomeRoot(newRoot, oldRoot);
209 newRoot.sanityCheckParentAndChildIndexes()
    [all...]
  /external/antlr/runtime/Cpp/include/
antlr3commontreeadaptor.hpp 65 TreeType* becomeRoot( TreeType* newRoot, TreeType* oldRoot);
68 TreeType* becomeRootToken(CommonTokenType* newRoot, TreeType* oldRoot);
146 TreeType* becomeRootToken(TreeType* newRoot, TreeType* oldRoot);
  /external/antlr/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/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...]
BaseTreeAdaptor.cs 158 * 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, object oldRoot
    [all...]
  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 349 * than the TreeAdaptor.becomeRoot() newRoot parameter.
363 void BecomeRoot( object newRoot, object oldRoot );
  /external/antlr/runtime/C/include/
antlr3basetreeadaptor.h 87 void * (*becomeRoot) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * newRoot, void * oldRoot);
91 void * (*becomeRootToken) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * newRoot, void * oldRoot);
  /external/antlr/runtime/C/src/
antlr3basetreeadaptor.c 51 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 is not
    [all...]

Completed in 2579 milliseconds

1 2 3