HomeSort by relevance Sort by last modified time
    Searched defs:BaseTree (Results 1 - 8 of 8) sorted by null

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
BaseTree.js 7 org.antlr.runtime.tree.BaseTree = function() {};
9 org.antlr.lang.extend(org.antlr.runtime.tree.BaseTree,
231 /** BaseTree doesn't track child indexes. */
238 /** BaseTree doesn't track parent pointers. */
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTree.as 35 public class BaseTree implements Tree {
38 /** Create a new node from an existing node does nothing for BaseTree
42 public function BaseTree(node:Tree = null) {
49 return BaseTree(_children[i]);
86 var childTree:BaseTree = BaseTree(t);
148 var killed:BaseTree = BaseTree(children.remove(i));
165 var newTree:BaseTree = BaseTree(t)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs 48 public abstract class BaseTree : ITree {
51 public BaseTree() {
55 * Create a new node from an existing node does nothing for BaseTree
60 public BaseTree(ITree node) {
85 /** <summary>BaseTree doesn't track parent pointers.</summary> */
94 /** <summary>BaseTree doesn't track child indexes.</summary> */
176 BaseTree childTree = t as BaseTree;
196 // no children for this but t is a BaseTree with children;
276 " with "+((BaseTree)t).toStringTree())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 50 public abstract class BaseTree : ITree
54 public BaseTree()
59 * Create a new node from an existing node does nothing for BaseTree
64 public BaseTree( ITree node )
99 /** <summary>BaseTree doesn't track parent pointers.</summary> */
111 /** <summary>BaseTree doesn't track child indexes.</summary> */
210 BaseTree childTree = t as BaseTree;
236 // no children for this but t is a BaseTree with children;
326 " with "+((BaseTree)t).toStringTree())
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
BaseTree.java 39 public abstract class BaseTree implements Tree {
42 public BaseTree() {
45 /** Create a new node from an existing node does nothing for BaseTree
49 public BaseTree(Tree node) {
95 BaseTree childTree = (BaseTree)t;
184 " with "+((BaseTree)t).toStringTree());
192 BaseTree newTree = (BaseTree)t;
209 BaseTree child = (BaseTree)newChildren.get(j)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
tree.py 663 # \- BaseTree
671 class BaseTree(Tree):
682 # BaseTree is abstract, no need to complain about not implemented abstract
688 Create a new node from an existing node does nothing for BaseTree
867 """BaseTree doesn't track child indexes."""
873 """BaseTree doesn't track child indexes."""
879 """BaseTree doesn't track parent pointers."""
884 """BaseTree doesn't track parent pointers."""
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 303 =begin rdoc ANTLR3::AST::BaseTree
312 class BaseTree < ::Array
465 (optionally using the BaseTree class or the Token module). Define a customized
472 class CommonTree < BaseTree
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 

Completed in 87 milliseconds