HomeSort by relevance Sort by last modified time
    Searched refs:BaseTree (Results 1 - 25 of 29) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
AntlrRuntime_BaseTreeDebugView.cs 39 private readonly BaseTree _tree;
41 public AntlrRuntime_BaseTreeDebugView(BaseTree 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...]
ParseTree.cs 47 public class ParseTree : BaseTree
CommonTree.cs 42 * fields, it's easy to cut them out in your own BaseTree subclass.
46 public class CommonTree : BaseTree
  /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...]
CommonTree.as 36 * fields, it's easy to cut them out in your own BaseTree subclass.
38 public class CommonTree extends BaseTree {
  /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...]
ParseTree.java 39 public class ParseTree extends BaseTree {
CommonTree.java 36 * fields, it's easy to cut them out in your own BaseTree subclass.
38 public class CommonTree extends BaseTree {
  /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...]
ParseTree.cs 46 public class ParseTree : BaseTree {
CommonTree.cs 42 * fields, it's easy to cut them out in your own BaseTree subclass.
46 public class CommonTree : BaseTree {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTree.js 5 * fields, it's easy to cut them out in your own BaseTree subclass.
34 org.antlr.lang.extend(org.antlr.runtime.tree.CommonTree, org.antlr.runtime.tree.BaseTree, {
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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 37 using BaseTree = Antlr.Runtime.Tree.BaseTree;
177 public class ProxyTree : BaseTree {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 38 using BaseTree = Antlr.Runtime.Tree.BaseTree;
212 public class ProxyTree : BaseTree
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 33 import org.antlr.runtime.tree.BaseTree;
127 public static class ProxyTree extends BaseTree {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 172 :Tree, :TreeAdaptor, :BaseTree, :BaseTreeAdaptor,
  /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...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /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/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 580 /// <summary>BaseTree doesn't track child indexes.</summary>
583 /// <summary>BaseTree doesn't track parent pointers.</summary>
609 /// extra fields, it's easy to cut them out in your own BaseTree subclass.
    [all...]
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 1191 milliseconds

1 2