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

1 2

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 132 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t);
ITree.cs 106 void ReplaceChildren(int startChildIndex, int stopChildIndex, object t);
CommonTreeAdaptor.cs 212 public override void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
214 ((ITree)parent).ReplaceChildren(startChildIndex, stopChildIndex, t);
CommonTreeNodeStream.cs 190 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
192 TreeAdaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
ITreeAdaptor.cs 322 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t);
BufferedTreeNodeStream.cs 463 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
465 adaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
BaseTreeAdaptor.cs 315 public abstract void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t);
BaseTree.cs 264 public virtual void ReplaceChildren(int startChildIndex, int stopChildIndex, object t) {
275 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 139 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t );
ITree.cs 111 void ReplaceChildren( int startChildIndex, int stopChildIndex, object t );
CommonTreeNodeStream.cs 219 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
223 TreeAdaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
ITreeAdaptor.cs 342 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t );
BaseTreeAdaptor.cs 496 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t)
502 tree.ReplaceChildren(startChildIndex, stopChildIndex, t);
BufferedTreeNodeStream.cs 549 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
553 adaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
BaseTree.cs 313 public virtual void ReplaceChildren( int startChildIndex, int stopChildIndex, object t )
325 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeNodeStream`1.cs 138 void ReplaceChildren(T parent, int startChildIndex, int stopChildIndex, T t);
ITreeAdaptor`1.cs 310 void ReplaceChildren(T parent, int startChildIndex, int stopChildIndex, T t);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeFixture.cs 251 // Test replaceChildren
261 t.ReplaceChildren(0, 0, newChild);
279 t.ReplaceChildren(0, 0, newChild);
294 t.ReplaceChildren(1, 1, newChild);
309 t.ReplaceChildren(0, 0, newChild);
324 t.ReplaceChildren(2, 2, newChild);
343 t.ReplaceChildren(0, 0, newChildren);
362 t.ReplaceChildren(2, 2, newChildren);
381 t.ReplaceChildren(1, 1, newChildren);
397 t.ReplaceChildren(0, 1, newChild)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeNodeStream.cs 175 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
176 input.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
DebugTreeAdaptor.cs 237 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
238 adaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeNodeStream.cs 206 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
208 input.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
DebugTreeAdaptor.cs 305 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
307 adaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tree.Tests.pas 418 T.ReplaceChildren(0, 2, NewChild);
436 T.ReplaceChildren(0, 2, NewChildren);
450 T.ReplaceChildren(0, 0, NewChild);
464 T.ReplaceChildren(2, 2, NewChild);
478 T.ReplaceChildren(1, 1, NewChild);
496 T.ReplaceChildren(0, 0, NewChildren);
514 T.ReplaceChildren(2, 2, NewChildren);
532 T.ReplaceChildren(1, 1, NewChildren);
546 T.ReplaceChildren(0, 1, NewChild);
560 T.ReplaceChildren(1, 2, NewChild)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
AST.stg 199 input.ReplaceChildren(adaptor.GetParent(retval.Start),
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
AST.stg 197 input.ReplaceChildren(adaptor.GetParent(retval.Start),

Completed in 83 milliseconds

1 2