Home
last modified time | relevance | path

Searched defs:CommonTree (Results 1 – 9 of 9) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DCommonTree.cs46 public class CommonTree : BaseTree class
65 public CommonTree() in CommonTree() method in Antlr.Runtime.Tree.CommonTree
69 public CommonTree( CommonTree node ) in CommonTree() method in Antlr.Runtime.Tree.CommonTree
80 public CommonTree( IToken t ) in CommonTree() method in Antlr.Runtime.Tree.CommonTree
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DCommonTree.cs46 public class CommonTree : BaseTree { class
65 public CommonTree() { in CommonTree() method in Antlr.Runtime.Tree.CommonTree
68 public CommonTree(CommonTree node) in CommonTree() method in Antlr.Runtime.Tree.CommonTree
78 public CommonTree(IToken t) { in CommonTree() method in Antlr.Runtime.Tree.CommonTree
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
DCommonTree.java38 public class CommonTree extends BaseTree { class
53 public CommonTree() { } in CommonTree() method in CommonTree
55 public CommonTree(CommonTree node) { in CommonTree() method in CommonTree
62 public CommonTree(Token t) { in CommonTree() method in CommonTree
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DCommonTree.as38 public class CommonTree extends BaseTree { class in org.antlr.runtime.tree
53 public function CommonTree(node:CommonTree = null) { method in org.antlr.runtime.tree.CommonTree
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DCommonTree.js7 org.antlr.runtime.tree.CommonTree = function(node) { class in org.antlr.runtime.tree
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DITreeFixture.cs44 using CommonTree = Antlr.Runtime.Tree.CommonTree; typedef
DITreeNodeStreamFixture.cs45 using CommonTree = Antlr.Runtime.Tree.CommonTree; typedef
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtree.rb472 class CommonTree < BaseTree class
794 CommonTree === tree ? tree.token : nil constant
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dtree.py1199 class CommonTree(BaseTree): class