Searched refs:TreeParser (Results 1 - 25 of 40) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTreeParser.cs41 using TreeParser = Antlr.Runtime.Tree.TreeParser;
43 public class DebugTreeParser : TreeParser {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTreeParser.cs40 using TreeParser = Antlr.Runtime.Tree.TreeParser;
42 public class DebugTreeParser : TreeParser
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeParser.cs44 public class TreeParser : BaseRecognizer { class in namespace:Antlr.Runtime.Tree
56 public TreeParser(ITreeNodeStream input) method in class:Antlr.Runtime.Tree.TreeParser
62 public TreeParser(ITreeNodeStream input, RecognizerSharedState state) method in class:Antlr.Runtime.Tree.TreeParser
166 if (this is TreeParser) {
H A DTreeFilter.cs53 TreeParser (derived from a tree grammar) to a tree:
82 public class TreeFilter : TreeParser
105 // share TreeParser object but not parsing-related state
H A DTreeRewriter.cs36 public class TreeRewriter<TTree> : TreeParser {
59 // share TreeParser object but not parsing-related state
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeParser.cs45 public class TreeParser : BaseRecognizer class in namespace:Antlr.Runtime.Tree
58 public TreeParser( ITreeNodeStream input ) method in class:Antlr.Runtime.Tree.TreeParser
64 public TreeParser( ITreeNodeStream input, RecognizerSharedState state ) method in class:Antlr.Runtime.Tree.TreeParser
183 if ( this is TreeParser )
H A DTreeFilter.cs37 public class TreeFilter : TreeParser
60 // share TreeParser object but not parsing-related state
H A DTreeRewriter.cs39 public class TreeRewriter : TreeParser
69 // share TreeParser object but not parsing-related state
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DTreeParser.js5 org.antlr.runtime.tree.TreeParser = function(input) {
6 org.antlr.runtime.tree.TreeParser.superclass.constructor.call(this, arguments[1]);
11 var TP = org.antlr.runtime.tree.TreeParser;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeParser.java32 import org.antlr.runtime.tree.TreeParser;
36 public class DebugTreeParser extends TreeParser {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as35 public class TreeParser extends BaseRecognizer {
41 public function TreeParser(input:TreeNodeStream, state:RecognizerSharedState = null) { function
130 if ( this is TreeParser ) {
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeFilter.java49 TreeParser (derived from a tree grammar) to a tree:
78 public class TreeFilter extends TreeParser {
98 // share TreeParser object but not parsing-related state
H A DTreeParser.java39 public class TreeParser extends BaseRecognizer { class in inherits:BaseRecognizer
51 public TreeParser(TreeNodeStream input) { method in class:TreeParser
56 public TreeParser(TreeNodeStream input, RecognizerSharedState state) { method in class:TreeParser
151 if ( this instanceof TreeParser ) {
H A DTreeRewriter.java34 public class TreeRewriter extends TreeParser {
56 // share TreeParser object but not parsing-related state
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
H A Dbasic.rb39 walker = FlatListWalker::TreeParser.new( nodes )
75 walker = SimpleTreeWalker::TreeParser.new( nodes )
114 walker = FlatVsTreeDecisionWalker::TreeParser.new( nodes )
152 walker = FlatVsTreeDecision2Walker::TreeParser.new( nodes )
189 walker = CyclicDFALookaheadWalker::TreeParser.new( nodes )
224 walker = NullableChildListWalker::TreeParser.new( nodes )
260 walker = NullableChildList2Walker::TreeParser.new( nodes )
297 walker = NullableChildList3Walker::TreeParser.new( nodes )
333 walker = ActionsAfterRootWalker::TreeParser.new( nodes )
363 walker = WildcardLookaheadWalker::TreeParser
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtesttree.py8 TreeParser, TreeVisitor, TreeIterator)
907 """Test the TreeParser.inContext() method"""
929 found = TreeParser._inContext(adaptor, self.tokenNames, node, "VEC")
948 found = TreeParser._inContext(adaptor, self.tokenNames, node, "VEC")
967 found = TreeParser._inContext(adaptor, self.tokenNames, node, "VEC ...")
986 found = TreeParser._inContext(adaptor, self.tokenNames, node, "...VEC")
1005 found = TreeParser._inContext(adaptor, self.tokenNames, node, "PRINT...VEC")
1024 found = TreeParser._inContext(adaptor, self.tokenNames, node, "... PRINT ... VEC ...")
1043 found = TreeParser._inContext(adaptor, self.tokenNames, node, "VEC ...")
1062 found = TreeParser
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
H A Dmain-scripts.rb150 TreeMainWalker::TreeParser.main(
186 TreeRewriteMainWalker::TreeParser.main(
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtree.rb55 =begin rdoc ANTLR3::AST::TreeParser
57 = TreeParser
59 TreeParser is the default base class of ANTLR-generated tree parsers. The class
104 class TreeParser < Recognizer class in class:ANTLR3.AST
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
H A Dtemplate-output.rb400 tree_parser = TreeRewriteTG::TreeParser.new( nodes )
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Dauto-ast.rb45 tree_grammar_module::TreeParser.send( :include, ANTLR3::Test::CollectErrors )
46 tree_grammar_module::TreeParser.send( :include, ANTLR3::Test::CaptureOutput )
53 walker = tree_grammar_module::TreeParser.new( nodes )
H A Drewrites.rb45 tree_grammar_module::TreeParser.send( :include, ANTLR3::Test::CollectErrors )
46 tree_grammar_module::TreeParser.send( :include, ANTLR3::Test::CaptureOutput )
53 walker = tree_grammar_module::TreeParser.new( nodes )
H A Dhetero-nodes.rb614 tree_parser = tree_grammar_module::TreeParser.new( nodes )
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCTP.java8 public class SimpleCTP extends TreeParser {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCTP.java8 public class SimpleCTP extends TreeParser {
/external/antlr/antlr-3.4/runtime/Ruby/lib/
H A Dantlr3.rb174 :TreeNodeStream, :CommonTreeNodeStream, :TreeParser,

Completed in 7021 milliseconds

12