HomeSort by relevance Sort by last modified time
    Searched refs:stopChildIndex (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /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);
ITree.cs 106 void ReplaceChildren(int startChildIndex, int stopChildIndex, object t);
BaseTree.cs 264 public virtual void ReplaceChildren(int startChildIndex, int stopChildIndex, object t) {
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++) {
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);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 139 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object 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 )
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++ )
CommonTreeNodeStream.cs 219 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
223 TreeAdaptor.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);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeNodeStream.java 105 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t);
Tree.java 91 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t);
CommonTreeAdaptor.java 163 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
165 ((Tree)parent).replaceChildren(startChildIndex, stopChildIndex, t);
CommonTreeNodeStream.java 144 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
146 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
BaseTree.java 181 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t) {
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/
TreeNodeStream.as 98 function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeNodeStream.h 49 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
ANTLRTree.h 80 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)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);
  /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 );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeNodeStream.java 148 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
149 input.replaceChildren(parent, startChildIndex, stopChildIndex, t);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeAdaptor.js 166 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) {
168 parent.replaceChildren(startChildIndex, stopChildIndex, t);
BaseTree.js 131 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++) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTree.h 74 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTree.h 74 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;

Completed in 370 milliseconds

1 2 3 4