/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestTrees.java | 243 t.replaceChildren(0, 0, newChild); in testReplaceWithNoChildren() 258 t.replaceChildren(0, 0, newChild); in testReplaceWithOneChildren() 271 t.replaceChildren(1, 1, newChild); in testReplaceInMiddle() 284 t.replaceChildren(0, 0, newChild); in testReplaceAtLeft() 297 t.replaceChildren(2, 2, newChild); in testReplaceAtRight() 313 t.replaceChildren(0, 0, newChildren); in testReplaceOneWithTwoAtLeft() 329 t.replaceChildren(2, 2, newChildren); in testReplaceOneWithTwoAtRight() 345 t.replaceChildren(1, 1, newChildren); in testReplaceOneWithTwoInMiddle() 359 t.replaceChildren(0, 1, newChild); in testReplaceTwoWithOneAtLeft() 373 t.replaceChildren(1, 2, newChild); in testReplaceTwoWithOneAtRight() [all …]
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3commontreeadaptor.c | 56 static void replaceChildren (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE parent, ANT… 142 …cta->baseAdaptor.replaceChildren = (void (*) (pANTLR3_BASE_TREE_ADAPTOR, void *, ANTLR3_INT32,… in ANTLR3_TREE_ADAPTORNew() 143 replaceChildren; in ANTLR3_TREE_ADAPTORNew() 444 replaceChildren in replaceChildren() function 449 parent->replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
D | antlr3basetree.c | 46 static void replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_IN… 71 tree->replaceChildren = replaceChildren; in antlr3BaseTreeNew() 339 replaceChildren (pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChildIndex, ANTLR3_INT32 stopChildInd… in replaceChildren() function
|
D | antlr3commontreenodestream.c | 62 static void replaceChildren (pANTLR3_TREE_NODE_STREAM tns, pANTLR3_BASE_TREE parent, ANTLR3… 103 stream->replaceChildren = replaceChildren; in antlr3TreeNodeStreamNew() 928 replaceChildren (pANTLR3_TREE_NODE_STREAM tns, pANTLR3_BASE_TREE parent, ANTLR3_INT32 startChild… in replaceChildren() function 938 adaptor->replaceChildren(adaptor, parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
D | DebugTreeNodeStream.java | 148 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() method in DebugTreeNodeStream 149 input.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
D | DebugTreeAdaptor.java | 233 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() method in DebugTreeAdaptor 234 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | CommonTreeAdaptor.js | 166 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) { method 168 parent.replaceChildren(startChildIndex, stopChildIndex, t);
|
D | CommonTreeNodeStream.js | 305 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) { method 307 this.adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTreeAdaptor.java | 163 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() method in CommonTreeAdaptor 165 ((Tree)parent).replaceChildren(startChildIndex, stopChildIndex, t); in replaceChildren()
|
D | CommonTreeNodeStream.java | 144 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() method in CommonTreeNodeStream 146 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
D | TreeNodeStream.java | 105 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); in replaceChildren() method
|
D | Tree.java | 91 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t); in replaceChildren() method
|
D | BufferedTreeNodeStream.java | 384 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t) { in replaceChildren() method in BufferedTreeNodeStream 386 adaptor.replaceChildren(parent, startChildIndex, stopChildIndex, t); in replaceChildren()
|
D | TreeAdaptor.java | 262 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); in replaceChildren() method
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
D | testtree.py | 740 t.replaceChildren(0, 0, newChild) 755 t.replaceChildren(0, 0, newChild) 768 t.replaceChildren(1, 1, newChild) 781 t.replaceChildren(0, 0, newChild) 794 t.replaceChildren(2, 2, newChild) 810 t.replaceChildren(0, 0, newChildren) 826 t.replaceChildren(2, 2, newChildren) 842 t.replaceChildren(1, 1, newChildren) 856 t.replaceChildren(0, 1, newChild) 870 t.replaceChildren(1, 2, newChild) [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTreeNodeStream.h | 49 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
|
D | ANTLRCommonTreeAdaptor.h | 62 - (void)replaceChildren:(ANTLRCommonTree *)parent From:(NSInteger)startChildIndex To:(NSInteger)sto…
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | tree.py | 189 def replaceChildren(self, startChildIndex, stopChildIndex, t): member in Tree 583 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in TreeAdaptor 793 def replaceChildren(self, startChildIndex, stopChildIndex, newTree): member in BaseTree 1616 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in CommonTreeAdaptor 1618 parent.replaceChildren(startChildIndex, stopChildIndex, t) 1736 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in TreeNodeStream 2087 def replaceChildren(self, parent, startChildIndex, stopChildIndex, t): member in CommonTreeNodeStream 2089 self.adaptor.replaceChildren(
|
/external/antlr/antlr-3.4/runtime/C/include/ |
D | antlr3basetree.h | 91 …void (*replaceChildren) (struct ANTLR3_BASE_TREE_struct * parent, ANTLR3_INT32 startChildIndex… member
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRCommonTreeNodeStream.h | 109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
|
D | ANTLRCommonTreeAdaptor.h | 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChi…
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRCommonTreeNodeStream.h | 109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
|
D | ANTLRCommonTreeAdaptor.h | 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChi…
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRCommonTreeNodeStream.h | 109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
|
D | ANTLRCommonTreeAdaptor.h | 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChi…
|