Searched refs:ParseTree (Results 1 - 14 of 14) sorted by relevance

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DParseTreeBuilder.java32 import org.antlr.runtime.tree.ParseTree;
39 * to build a simple parse tree using ParseTree nodes.
49 ParseTree root = create("<grammar "+grammarName+">");
53 public ParseTree getTree() {
54 return (ParseTree)callStack.elementAt(0);
60 public ParseTree create(Object payload) {
61 return new ParseTree(payload);
64 public ParseTree epsilonNode() {
74 ParseTree parentRuleNode = (ParseTree)callStac
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DParseTreeBuilder.cs35 using ParseTree = Antlr.Runtime.Tree.ParseTree;
39 * to build a simple parse tree using ParseTree nodes.
45 Stack<ParseTree> callStack = new Stack<ParseTree>();
50 ParseTree root = Create("<grammar " + grammarName + ">");
54 public virtual ParseTree GetTree() {
65 public virtual ParseTree Create(object payload) {
66 return new ParseTree(payload);
69 public virtual ParseTree EpsilonNod
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DParseTreeBuilder.cs36 using ParseTree = Antlr.Runtime.Tree.ParseTree;
40 * to build a simple parse tree using ParseTree nodes.
47 Stack<ParseTree> callStack = new Stack<ParseTree>();
53 ParseTree root = Create( "<grammar " + grammarName + ">" );
57 public virtual ParseTree Tree
70 public virtual ParseTree Create( object payload )
72 return new ParseTree( payload );
75 public virtual ParseTree EpsilonNod
[all...]
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java27 import org.antlr.runtime.tree.ParseTree;
75 ParseTree tree = builder.getTree();
339 * Parses the file represented by the ParseTree.
340 * @param tree A ParseTree of the file to parse.
342 private void parseFile(ParseTree tree) {
383 parseFile((ParseTree) tree.getChild(i));
392 private PackageInfo buildPackage(ParseTree tree) {
394 ParseTree child = (ParseTree) tree.getChild(i);
412 private static String buildQualifiedName(ParseTree tre
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DParseTree.cs46 public class ParseTree : BaseTree { class in namespace:Antlr.Runtime.Tree
50 public ParseTree(object label) { method in class:Antlr.Runtime.Tree.ParseTree
136 ParseTree t = (ParseTree)Children[i];
H A DTreePatternParser.cs51 return ParseTree();
62 public virtual object ParseTree() { method in class:Antlr.Runtime.Tree.TreePatternParser
76 object subtree = ParseTree();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DParseTree.cs47 public class ParseTree : BaseTree class in namespace:Antlr.Runtime.Tree
52 public ParseTree( object label ) method in class:Antlr.Runtime.Tree.ParseTree
162 ParseTree t = (ParseTree)Children[i];
H A DTreePatternParser.cs56 return ParseTree();
70 public virtual object ParseTree() method in class:Antlr.Runtime.Tree.TreePatternParser
88 object subtree = ParseTree();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DParseTree.java39 public class ParseTree extends BaseTree { class in inherits:BaseTree
43 public ParseTree(Object label) { method in class:ParseTree
115 ParseTree t = (ParseTree)children.get(i);
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestInterpretedParsing.java32 import org.antlr.runtime.tree.ParseTree;
70 ParseTree t = parseEngine.parse("prog");
105 ParseTree t = parseEngine.parse("prog");
140 ParseTree t = parseEngine.parse("prog");
175 ParseTree t = parseEngine.parse("prog");
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DInterp.java32 import org.antlr.runtime.tree.ParseTree;
126 ParseTree t = parseEngine.parse(startRule);
H A DInterpreter.java37 import org.antlr.runtime.tree.ParseTree;
189 public ParseTree parse(String startRule)
195 public ParseTree parse(String startRule, List visitedStates)
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas1047 function ParseTree: IANTLRInterface;
1851 function ParseTree: IANTLRInterface;
4328 function TTreePatternParser.ParseTree: IANTLRInterface;
4348 Subtree := ParseTree;
4374 Exit(ParseTree);
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 229 milliseconds