HomeSort by relevance Sort by last modified time
    Searched defs:ReplaceChildren (Results 1 - 22 of 22) sorted by null

  /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);
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);
ITree.cs 106 void ReplaceChildren(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+
BaseTreeAdaptor.cs 315 public abstract void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object 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);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 139 void ReplaceChildren( object parent, 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 );
ITree.cs 111 void ReplaceChildren( int startChildIndex, int stopChildIndex, object t );
BaseTree.cs 313 public virtual void ReplaceChildren( int startChildIndex, int stopChildIndex, object t )
325 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
BaseTreeAdaptor.cs 496 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t)
502 tree.ReplaceChildren(startChildIndex, stopChildIndex, t);
ITreeAdaptor.cs 342 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t );
BufferedTreeNodeStream.cs 549 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
553 adaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
  /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/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/
Antlr.Runtime.Tree.pas 327 procedure ReplaceChildren(const Parent: IANTLRInterface; const StartChildIndex,
386 procedure ReplaceChildren(const Parent: IANTLRInterface; const StartChildIndex,
481 procedure ReplaceChildren(const StartChildIndex, StopChildIndex: Integer;
    [all...]

Completed in 412 milliseconds