HomeSort by relevance Sort by last modified time
    Searched defs:replaceChildren (Results 1 - 25 of 29) 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 {
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);