Searched refs:startChildIndex (Results 26 - 50 of 73) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DITreeAdaptor.cs342 void ReplaceChildren( object parent, 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);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTree.h80 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
H A DANTLRCommonTreeAdaptor.h62 - (void)replaceChildren:(ANTLRCommonTree *)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(ANTLRCommonTree *)t;
H A DANTLRCommonTreeNodeStream.h110 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTree.h74 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
H A DANTLRCommonTreeAdaptor.h59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
H A DANTLRCommonTreeNodeStream.h109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
H A DANTLRBaseTree.h55 - (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/
H A DANTLRTree.h74 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
H A DANTLRCommonTreeAdaptor.h59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
H A DANTLRCommonTreeNodeStream.h109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTree.h74 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
H A DANTLRCommonTreeAdaptor.h59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
H A DANTLRCommonTreeNodeStream.h109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3basetree.h91 void (*replaceChildren) (struct ANTLR3_BASE_TREE_struct * parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, struct ANTLR3_BASE_TREE_struct * t);
H A Dantlr3commontreenodestream.h139 void (*replaceChildren) (struct ANTLR3_TREE_NODE_STREAM_struct * tns, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs310 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 DTreeAdaptor.java262 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); argument
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py189 def replaceChildren(self, startChildIndex, stopChildIndex, t):
583 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t):
793 def replaceChildren(self, startChildIndex, stopChildIndex, newTree):
801 if (startChildIndex >= len(self.children)
806 replacingHowMany = stopChildIndex - startChildIndex + 1
822 self.children[idx + startChildIndex] = child
824 child.childIndex = idx + startChildIndex
830 del self.children[startChildIndex:stopChildIndex+1]
833 self.children[startChildIndex:startChildIndex]
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeAdaptor.as239 function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
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 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 DDebugTreeAdaptor.java233 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { argument
234 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.js305 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) {
307 this.adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);

Completed in 2592 milliseconds

123