Searched defs:replaceChildren (Results 1 - 24 of 24) sorted by relevance

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTree.as159 public function replaceChildren(startChildIndex:int, stopChildIndex:int, t:Object):void { function
H A DCommonTreeNodeStream.as343 public function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void { function
345 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
H A DBaseTreeAdaptor.as284 public function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void { function
/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 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 DTree.java91 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t); method in interface:Tree
H A DBaseTree.java181 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t) { method in class:BaseTree
183 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
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
H A DBufferedTreeNodeStream.java384 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { method in class:BufferedTreeNodeStream
386 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 Dantlr3basetreeadaptor.h142 void (*replaceChildren) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, void * t); member in struct:ANTLR3_BASE_TREE_ADAPTOR_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/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/C/src/
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!!");
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 Dantlr3commontreenodestream.c62 static void replaceChildren (pANTLR3_TREE_NODE_STREAM tns, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t);
103 stream->replaceChildren = replaceChildren;
928 replaceChildren (pANTLR3_TREE_NODE_STREAM tns, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t) function
938 adaptor->replaceChildren(adaptor, parent, startChildIndex, stopChildIndex, t);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py381 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in class:DebugTreeAdaptor
382 self.adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t)
H A Dtree.py189 def replaceChildren(self, startChildIndex, stopChildIndex, t): member in class:Tree
583 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in class:TreeAdaptor
793 def replaceChildren(self, startChildIndex, stopChildIndex, newTree): member in class:BaseTree
1616 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in class:CommonTreeAdaptor
1618 parent.replaceChildren(startChildIndex, stopChildIndex, t)
1736 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in class:TreeNodeStream
2087 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in class:CommonTreeNodeStream
2089 self.adaptor.replaceChildren(
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 3356 milliseconds