Home
last modified time | relevance | path

Searched refs:replaceChildren (Results 1 – 25 of 59) sorted by relevance

123

/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestTrees.java243 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/
Dantlr3commontreeadaptor.c56 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()
Dantlr3basetree.c46 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
Dantlr3commontreenodestream.c62 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/
DDebugTreeNodeStream.java148 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()
DDebugTreeAdaptor.java233 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/
DCommonTreeAdaptor.js166 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) { method
168 parent.replaceChildren(startChildIndex, stopChildIndex, t);
DCommonTreeNodeStream.js305 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/
DCommonTreeAdaptor.java163 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()
DCommonTreeNodeStream.java144 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()
DTreeNodeStream.java105 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); in replaceChildren() method
DTree.java91 public void replaceChildren(int startChildIndex, int stopChildIndex, Object t); in replaceChildren() method
DBufferedTreeNodeStream.java384 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()
DTreeAdaptor.java262 public void replaceChildren(Object parent, int startChildIndex, int stopChildIndex, Object t); in replaceChildren() method
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtesttree.py740 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/
DANTLRTreeNodeStream.h49 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
DANTLRCommonTreeAdaptor.h62 - (void)replaceChildren:(ANTLRCommonTree *)parent From:(NSInteger)startChildIndex To:(NSInteger)sto…
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtree.py189 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/
Dantlr3basetree.h91 …void (*replaceChildren) (struct ANTLR3_BASE_TREE_struct * parent, ANTLR3_INT32 startChildIndex… member
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRCommonTreeNodeStream.h109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
DANTLRCommonTreeAdaptor.h59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChi…
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRCommonTreeNodeStream.h109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
DANTLRCommonTreeAdaptor.h59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChi…
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRCommonTreeNodeStream.h109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex Wi…
DANTLRCommonTreeAdaptor.h59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChi…

123