Searched refs:replaceChildren (Results 1 - 25 of 55) sorted by relevance

123

/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); method in interface:TreeNodeStream
H A DTree.java91 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t); method in interface:Tree
H A DCommonTreeAdaptor.java163 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { method in class:CommonTreeAdaptor
165 ((Tree)parent).replaceChildren(startChildIndex, stopChildIndex, t);
H A DCommonTreeNodeStream.java144 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { method in class:CommonTreeNodeStream
146 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
H A DTreeAdaptor.java262 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); method in interface:TreeAdaptor
/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;
H A DTreeAdaptor.as239 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 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/tool/src/test/java/org/antlr/test/
H A DTestTrees.java236 // Test replaceChildren
243 t.replaceChildren(0, 0, newChild);
258 t.replaceChildren(0, 0, newChild);
271 t.replaceChildren(1, 1, newChild);
284 t.replaceChildren(0, 0, newChild);
297 t.replaceChildren(2, 2, newChild);
313 t.replaceChildren(0, 0, newChildren);
329 t.replaceChildren(2, 2, newChildren);
345 t.replaceChildren(1, 1, newChildren);
359 t.replaceChildren(
[all...]
/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) { method in class:DebugTreeNodeStream
149 input.replaceChildren(parent, startChildIndex, stopChildIndex, t);
H A DDebugTreeAdaptor.java233 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { method in class:DebugTreeAdaptor
234 adaptor.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 DCommonTreeNodeStream.js305 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) {
307 this.adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, 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); member in struct:ANTLR3_BASE_TREE_struct
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); member in struct:ANTLR3_TREE_NODE_STREAM_struct
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
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/A/Headers/
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 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/src/
H A Dantlr3commontreeadaptor.c56 static void replaceChildren (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t);
142 cta->baseAdaptor.replaceChildren = (void (*) (pANTLR3_BASE_TREE_ADAPTOR, void *, ANTLR3_INT32, ANTLR3_INT32, void *))
143 replaceChildren;
444 replaceChildren function
449 parent->replaceChildren(parent, startChildIndex, stopChildIndex, t);
H A Dantlr3basetree.c46 static void replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t);
71 tree->replaceChildren = replaceChildren;
339 replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE newTree) function
354 ANTLR3_FPRINTF(stderr, "replaceChildren call: Indexes are invalid; no children in list for %s", parent->getText(parent)->chars);
371 ANTLR3_FPRINTF(stderr, "replaceChildren: out of memory!!");

Completed in 1918 milliseconds

123