Searched defs:stopChildIndex (Results 1 - 25 of 34) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DITreeNodeStream.cs139 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ); argument
H A DBaseTree.cs313 public virtual void ReplaceChildren( int startChildIndex, int stopChildIndex, object t ) argument
317 if (stopChildIndex < 0)
321 if (stopChildIndex < startChildIndex)
325 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
333 int replacingHowMany = stopChildIndex - startChildIndex + 1;
365 for ( int i = startChildIndex; i <= stopChildIndex; i++ )
383 for ( int c = indexToDelete; c <= stopChildIndex; c++ )
H A DCommonTreeNodeStream.cs219 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ) argument
223 TreeAdaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
H A DITree.cs111 void ReplaceChildren( int startChildIndex, int stopChildIndex, object t ); argument
H A DBaseTreeAdaptor.cs496 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) argument
502 tree.ReplaceChildren(startChildIndex, stopChildIndex, t);
H A DBufferedTreeNodeStream.cs549 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ) argument
553 adaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
H A DITreeAdaptor.cs342 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ); argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DITreeNodeStream.cs132 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t); argument
H A DCommonTreeAdaptor.cs212 public override void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) { argument
214 ((ITree)parent).ReplaceChildren(startChildIndex, stopChildIndex, t);
H A DCommonTreeNodeStream.cs190 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) { argument
192 TreeAdaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
H A DITree.cs106 void ReplaceChildren(int startChildIndex, int stopChildIndex, object t); argument
H A DBaseTree.cs264 public virtual void ReplaceChildren(int startChildIndex, int stopChildIndex, object t) { argument
267 if (stopChildIndex < 0)
271 if (stopChildIndex < startChildIndex)
275 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
282 int replacingHowMany = stopChildIndex - startChildIndex + 1;
307 for (int i = startChildIndex; i <= stopChildIndex; i++) {
321 for (int c = indexToDelete; c <= stopChildIndex; c++) {
H A DBaseTreeAdaptor.cs315 public abstract void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t); argument
H A DITreeAdaptor.cs322 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t); argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeNodeStream`1.cs138 void ReplaceChildren(T parent, int startChildIndex, int stopChildIndex, T t); argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeNodeStream.java105 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); argument
H A DCommonTreeAdaptor.java163 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { argument
165 ((Tree)parent).replaceChildren(startChildIndex, stopChildIndex, t);
H A DTree.java91 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t); argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeNodeStream.cs175 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) { argument
176 input.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
H A DDebugTreeAdaptor.cs237 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) { argument
238 adaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeNodeStream.cs206 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ) argument
208 input.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
H A DDebugTreeAdaptor.cs305 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ) argument
307 adaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeNodeStream.java148 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { argument
149 input.replaceChildren(parent, startChildIndex, stopChildIndex, t);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetree.c46 static void replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t);
339 replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE newTree) argument
381 replacingHowMany = stopChildIndex - startChildIndex + 1;
395 for (i = startChildIndex; i <= stopChildIndex; i++)
419 for (j = indexToDelete; j <= (ANTLR3_INT32)stopChildIndex; j++)
H A Dantlr3commontreeadaptor.c56 static void replaceChildren (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t);
445 (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t)
449 parent->replaceChildren(parent, startChildIndex, stopChildIndex, t);
444 replaceChildren(pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t) argument

Completed in 516 milliseconds

12