HomeSort by relevance Sort by last modified time
    Searched defs:replaceChildren (Results 1 - 25 of 26) sorted by null

1 2

  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 159 public function replaceChildren(startChildIndex:int, stopChildIndex:int, t:Object):void {
CommonTreeAdaptor.as 164 public override function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void {
166 Tree(parent).replaceChildren(startChildIndex, stopChildIndex, t);
CommonTreeNodeStream.as 343 public function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void {
345 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
BaseTreeAdaptor.as 284 public function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void {
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeNodeStream.java 112 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t);
CommonTreeAdaptor.java 180 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
182 ((Tree)parent).replaceChildren(startChildIndex, stopChildIndex, t);
CommonTreeNodeStream.java 218 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
220 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
Tree.java 91 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t);
TreeAdaptor.java 262 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t);
BufferedTreeNodeStream.java 405 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
407 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
BaseTree.java 194 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t) {
196 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeNodeStream.java 166 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
167 input.replaceChildren(parent, startChildIndex, stopChildIndex, t);
DebugTreeAdaptor.java 264 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
265 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
  /external/antlr/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);
antlr3basetreeadaptor.h 142 void (*replaceChildren) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, void * 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/runtime/C/src/
antlr3basetree.c 46 static void replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE t);
71 tree->replaceChildren = replaceChildren;
343 replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildIndex, pANTLR3_BASE_TREE newTree)
358 ANTLR3_FPRINTF(stderr, "replaceChildren call: Indexes are invalid; no children in list for %s", parent->getText(parent)->chars);
375 ANTLR3_FPRINTF(stderr, "replaceChildren: out of memory!!");
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);
antlr3commontreenodestream.c 62 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)
938 adaptor->replaceChildren(adaptor, parent, startChildIndex, stopChildIndex, t);
  /external/antlr/runtime/Python/antlr3/
debug.py 381 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t):
382 self.adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t)
    [all...]
tree.py 189 def replaceChildren(self, startChildIndex, stopChildIndex, t):
583 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t):
793 def replaceChildren(self, startChildIndex, stopChildIndex, newTree):
    [all...]
  /external/antlr/runtime/Python3/antlr3/
debug.py 387 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t):
388 self.adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t)
    [all...]
tree.py 189 def replaceChildren(self, startChildIndex, stopChildIndex, t):
583 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t):
789 def replaceChildren(self, startChildIndex, stopChildIndex, newTree):
    [all...]
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 

Completed in 173 milliseconds

1 2