Searched refs:stopChildIndex (Results 1 - 25 of 73) sorted by relevance

123

/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 DITree.cs106 void ReplaceChildren(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 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 DCommonTreeNodeStream.cs190 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) { argument
192 TreeAdaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
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/Tree/
H A DITreeNodeStream.cs139 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ); argument
H A DITree.cs111 void ReplaceChildren( 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 DITreeAdaptor.cs342 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 DTree.java91 public void replaceChildren(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 DCommonTreeNodeStream.java144 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { argument
146 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
H A DBaseTree.java181 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t) { argument
183 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
190 int replacingHowMany = stopChildIndex - startChildIndex + 1;
208 for (int i=startChildIndex; i<=stopChildIndex; i++) {
222 for (int c=indexToDelete; c<=stopChildIndex; c++) {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeNodeStream.as98 function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeNodeStream.h49 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
H A DANTLRTree.h80 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
/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);
/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 );
/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/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTreeAdaptor.js166 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) {
168 parent.replaceChildren(startChildIndex, stopChildIndex, t);
H A DBaseTree.js131 replaceChildren: function(startChildIndex, stopChildIndex, t) {
135 var replacingHowMany = stopChildIndex - startChildIndex + 1;
154 for (i=startChildIndex; i<=stopChildIndex; i++) {
168 for (c=indexToDelete; c<=stopChildIndex; c++) {

Completed in 179 milliseconds

123