HomeSort by relevance Sort by last modified time
    Searched full:replacechildren (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ITreeFixture.cs 251 // Test replaceChildren
261 t.ReplaceChildren(0, 0, newChild);
279 t.ReplaceChildren(0, 0, newChild);
294 t.ReplaceChildren(1, 1, newChild);
309 t.ReplaceChildren(0, 0, newChild);
324 t.ReplaceChildren(2, 2, newChild);
343 t.ReplaceChildren(0, 0, newChildren);
362 t.ReplaceChildren(2, 2, newChildren);
381 t.ReplaceChildren(1, 1, newChildren);
397 t.ReplaceChildren(0, 1, newChild)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 236 // Test replaceChildren
243 t.replaceChildren(0, 0, newChild);
258 t.replaceChildren(0, 0, newChild);
271 t.replaceChildren(1, 1, newChild);
284 t.replaceChildren(0, 0, newChild);
297 t.replaceChildren(2, 2, newChild);
313 t.replaceChildren(0, 0, newChildren);
329 t.replaceChildren(2, 2, newChildren);
345 t.replaceChildren(1, 1, newChildren);
359 t.replaceChildren(0, 1, newChild)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeNodeStream.h 49 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
ANTLRCommonTreeNodeStream.m 214 - (void) replaceChildren:(id) parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) aTree
217 [adaptor replaceChildren:parent From:startChildIndex To:stopChildIndex With:aTree];
ANTLRCommonTreeAdaptor.h 62 - (void)replaceChildren:(ANTLRCommonTree *)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(ANTLRCommonTree *)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);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeAdaptor.as 164 public override function replaceChildren(parent:Object, startChildIndex:int, stopChildIndex:int, t:Object):void {
166 Tree(parent).replaceChildren(startChildIndex, stopChildIndex, t);
Tree.as 59 function replaceChildren(startChildIndex:int, stopChildIndex:int, t:Object):void;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeNodeStream.cs 175 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
176 input.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeAdaptor.cs 212 public override void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
214 ((ITree)parent).ReplaceChildren(startChildIndex, stopChildIndex, t);
CommonTreeNodeStream.cs 190 public virtual void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t) {
192 TreeAdaptor.ReplaceChildren(parent, startChildIndex, stopChildIndex, t);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeNodeStream.cs 219 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
223 TreeAdaptor.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeNodeStream.cs 206 public virtual void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t )
208 input.ReplaceChildren( parent, startChildIndex, stopChildIndex, t );
  /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);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
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);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeAdaptor.js 166 replaceChildren: function(parent, startChildIndex, stopChildIndex, t) {
168 parent.replaceChildren(startChildIndex, stopChildIndex, t);
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtree.py 733 # Test replaceChildren
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
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonTreeAdaptor.h 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
ANTLRCommonTreeNodeStream.h 109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonTreeAdaptor.h 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
ANTLRCommonTreeNodeStream.h 109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeAdaptor.h 59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
ANTLRCommonTreeNodeStream.h 109 - (void) replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;

Completed in 310 milliseconds

1 2 3 4