Home
last modified time | relevance | path

Searched refs:stopChildIndex (Results 1 – 25 of 69) sorted by relevance

123

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTree.cs264 public virtual void ReplaceChildren(int startChildIndex, int stopChildIndex, object t) { in ReplaceChildren() argument
267 if (stopChildIndex < 0) in ReplaceChildren()
271 if (stopChildIndex < startChildIndex) in ReplaceChildren()
282 int replacingHowMany = stopChildIndex - startChildIndex + 1; in ReplaceChildren()
307 for (int i = startChildIndex; i <= stopChildIndex; i++) { in ReplaceChildren()
321 for (int c = indexToDelete; c <= stopChildIndex; c++) { in ReplaceChildren()
DCommonTreeAdaptor.cs212 …public override void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, objec… in ReplaceChildren() argument
214 ((ITree)parent).ReplaceChildren(startChildIndex, stopChildIndex, t); in ReplaceChildren()
DCommonTreeNodeStream.cs190 …public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object… in ReplaceChildren() argument
192 TreeAdaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t); in ReplaceChildren()
DITreeNodeStream.cs132 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t); in ReplaceChildren() argument
DITree.cs106 void ReplaceChildren(int startChildIndex, int stopChildIndex, object t); in ReplaceChildren() argument
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DBaseTree.cs337 public virtual void ReplaceChildren( int startChildIndex, int stopChildIndex, object t ) in ReplaceChildren() argument
341 if (stopChildIndex < 0) in ReplaceChildren()
345 if (stopChildIndex < startChildIndex) in ReplaceChildren()
357 int replacingHowMany = stopChildIndex - startChildIndex + 1; in ReplaceChildren()
389 for ( int i = startChildIndex; i <= stopChildIndex; i++ ) in ReplaceChildren()
407 for ( int c = indexToDelete; c <= stopChildIndex; c++ ) in ReplaceChildren()
DCommonTreeNodeStream.cs277 …public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, objec… in ReplaceChildren() argument
281 TreeAdaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t ); in ReplaceChildren()
DITreeNodeStream.cs141 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ); in ReplaceChildren() argument
DITree.cs111 void ReplaceChildren( int startChildIndex, int stopChildIndex, object t ); in ReplaceChildren() argument
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DBaseTree.js131 replaceChildren: function(startChildIndex, stopChildIndex, t) { argument
135 var replacingHowMany = stopChildIndex - startChildIndex + 1;
154 for (i=startChildIndex; i<=stopChildIndex; i++) {
168 for (c=indexToDelete; c<=stopChildIndex; c++) {
DCommonTreeAdaptor.js166 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) { argument
168 parent.replaceChildren(startChildIndex, stopChildIndex, t);
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DBaseTree.java194 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument
203 int replacingHowMany = stopChildIndex - startChildIndex + 1; in replaceChildren()
221 for (int i=startChildIndex; i<=stopChildIndex; i++) { in replaceChildren()
235 for (int c=indexToDelete; c<=stopChildIndex; c++) { in replaceChildren()
DCommonTreeAdaptor.java180 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument
182 ((Tree)parent).replaceChildren(startChildIndex, stopChildIndex, t); in replaceChildren()
DCommonTreeNodeStream.java218 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument
220 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
DTreeNodeStream.java112 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); in replaceChildren() argument
/external/antlr/runtime/C/src/
Dantlr3basetree.c46 …pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_…
343 …pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_… in replaceChildren() argument
385 replacingHowMany = stopChildIndex - startChildIndex + 1; in replaceChildren()
399 for (i = startChildIndex; i <= stopChildIndex; i++) in replaceChildren()
423 for (j = indexToDelete; j <= (ANTLR3_INT32)stopChildIndex; j++) in replaceChildren()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugTreeNodeStream.cs175 …public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object… in ReplaceChildren() argument
176 input.ReplaceChildren(parent, startChildIndex, stopChildIndex, t); in ReplaceChildren()
DDebugTreeAdaptor.cs237 …public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object… in ReplaceChildren() argument
238 adaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t); in ReplaceChildren()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugTreeNodeStream.cs206 …public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, objec… in ReplaceChildren() argument
208 input.ReplaceChildren( parent, startChildIndex, stopChildIndex, t ); in ReplaceChildren()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DDebugTreeNodeStream.java166 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument
167 input.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
/external/antlr/runtime/Python3/antlr3/
Dtree.py189 def replaceChildren(self, startChildIndex, stopChildIndex, t): argument
583 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
789 def replaceChildren(self, startChildIndex, stopChildIndex, newTree): argument
798 or stopChildIndex >= len(self.children)):
801 replacingHowMany = stopChildIndex - startChildIndex + 1
825 del self.children[startChildIndex:stopChildIndex+1]
1607 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
1609 parent.replaceChildren(startChildIndex, stopChildIndex, t)
1727 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
2074 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
[all …]
/external/antlr/runtime/Python/antlr3/
Dtree.py189 def replaceChildren(self, startChildIndex, stopChildIndex, t): argument
583 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
793 def replaceChildren(self, startChildIndex, stopChildIndex, newTree): argument
802 or stopChildIndex >= len(self.children)
806 replacingHowMany = stopChildIndex - startChildIndex + 1
830 del self.children[startChildIndex:stopChildIndex+1]
1616 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
1618 parent.replaceChildren(startChildIndex, stopChildIndex, t)
1736 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
2087 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): argument
[all …]
/external/antlr/runtime/ObjC/Framework/
DBaseTree.h57 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
133 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
DTreeNodeStream.h100 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
DITreeNodeStream`1.cs138 void ReplaceChildren(T parent, int startChildIndex, int stopChildIndex, T t); in ReplaceChildren() argument

123