/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);
|
TreeAdaptor.java | 262 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t);
|
/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;
|
TreeAdaptor.as | 239 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;
|
ANTLRCommonTreeAdaptor.h | 62 - (void)replaceChildren:(ANTLRCommonTree *)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(ANTLRCommonTree *)t;
|
ANTLRCommonTreeNodeStream.h | 110 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
|
ANTLRTreeAdaptor.h | 154 - (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/ |
TestTrees.java | 236 // 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(0, 1, newChild) [all...] |
/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);
|
DebugTreeAdaptor.java | 233 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { 234 adaptor.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);
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3basetree.h | 91 void (*replaceChildren) (struct ANTLR3_BASE_TREE_struct * parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, struct ANTLR3_BASE_TREE_struct * t);
|
antlr3commontreenodestream.h | 139 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/ObjC/ANTLR.framework/Headers/ |
ANTLRCommonTreeAdaptor.h | 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
|
ANTLRCommonTreeNodeStream.h | 109 - (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/ |
ANTLRCommonTreeAdaptor.h | 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
|
ANTLRCommonTreeNodeStream.h | 109 - (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/ |
ANTLRCommonTreeAdaptor.h | 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
|
ANTLRCommonTreeNodeStream.h | 109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3commontreeadaptor.c | 56 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 449 parent->replaceChildren(parent, startChildIndex, stopChildIndex, t);
|
antlr3basetree.c | 46 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) 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!!");
|