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

1 2

  /external/antlr/antlr-3.4/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/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);
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);
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 384 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) {
386 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
BaseTree.java 181 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t) {
183 System.out.println("replaceChildren "+startChildIndex+", "+stopChildIndex+
  /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/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/antlr-3.4/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;
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!!");
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/antlr-3.4/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...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 

Completed in 944 milliseconds

1 2