/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | BaseTree.cs | 313 public virtual void ReplaceChildren( int startChildIndex, int stopChildIndex, object t ) in ReplaceChildren() argument 317 if (stopChildIndex < 0) in ReplaceChildren() 321 if (stopChildIndex < startChildIndex) in ReplaceChildren() 333 int replacingHowMany = stopChildIndex - startChildIndex + 1; in ReplaceChildren() 365 for ( int i = startChildIndex; i <= stopChildIndex; i++ ) in ReplaceChildren() 383 for ( int c = indexToDelete; c <= stopChildIndex; c++ ) in ReplaceChildren()
|
D | CommonTreeNodeStream.cs | 219 …public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, objec… in ReplaceChildren() argument 223 TreeAdaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t ); in ReplaceChildren()
|
D | ITreeNodeStream.cs | 139 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t ); in ReplaceChildren() argument
|
D | ITree.cs | 111 void ReplaceChildren( int startChildIndex, int stopChildIndex, object t ); in ReplaceChildren() argument
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | BaseTree.cs | 264 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()
|
D | CommonTreeAdaptor.cs | 212 …public override void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, objec… in ReplaceChildren() argument 214 ((ITree)parent).ReplaceChildren(startChildIndex, stopChildIndex, t); in ReplaceChildren()
|
D | CommonTreeNodeStream.cs | 190 …public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object… in ReplaceChildren() argument 192 TreeAdaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t); in ReplaceChildren()
|
D | ITreeNodeStream.cs | 132 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t); in ReplaceChildren() argument
|
D | ITree.cs | 106 void ReplaceChildren(int startChildIndex, int stopChildIndex, object t); in ReplaceChildren() argument
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | BaseTree.js | 131 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++) {
|
D | CommonTreeAdaptor.js | 166 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) { argument 168 parent.replaceChildren(startChildIndex, stopChildIndex, t);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | BaseTree.java | 181 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument 190 int replacingHowMany = stopChildIndex - startChildIndex + 1; in replaceChildren() 208 for (int i=startChildIndex; i<=stopChildIndex; i++) { in replaceChildren() 222 for (int c=indexToDelete; c<=stopChildIndex; c++) { in replaceChildren()
|
D | CommonTreeAdaptor.java | 163 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument 165 ((Tree)parent).replaceChildren(startChildIndex, stopChildIndex, t); in replaceChildren()
|
D | CommonTreeNodeStream.java | 144 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument 146 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
D | TreeNodeStream.java | 105 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); in replaceChildren() argument
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3basetree.c | 46 …pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_… 339 …pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_… in replaceChildren() argument 381 replacingHowMany = stopChildIndex - startChildIndex + 1; in replaceChildren() 395 for (i = startChildIndex; i <= stopChildIndex; i++) in replaceChildren() 419 for (j = indexToDelete; j <= (ANTLR3_INT32)stopChildIndex; j++) in replaceChildren()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
D | DebugTreeNodeStream.cs | 206 …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/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeNodeStream.cs | 175 …public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object… in ReplaceChildren() argument 176 input.ReplaceChildren(parent, startChildIndex, stopChildIndex, t); in ReplaceChildren()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | DebugTreeNodeStream.java | 148 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() argument 149 input.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/ |
D | ITreeNodeStream`1.cs | 138 void ReplaceChildren(T parent, int startChildIndex, int stopChildIndex, T t); in ReplaceChildren() argument
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | tree.py | 189 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/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRBaseTree.h | 55 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t; 129 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRBaseTree.h | 55 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t; 129 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRBaseTree.h | 55 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t; 129 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTreeNodeStream.h | 49 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
|