/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugTreeParser.cs | 41 using TreeParser = Antlr.Runtime.Tree.TreeParser; 43 public class DebugTreeParser : TreeParser {
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugTreeParser.cs | 40 using TreeParser = Antlr.Runtime.Tree.TreeParser; 42 public class DebugTreeParser : TreeParser
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeParser.cs | 44 public class TreeParser : BaseRecognizer { 56 public TreeParser(ITreeNodeStream input) 62 public TreeParser(ITreeNodeStream input, RecognizerSharedState state) 166 if (this is TreeParser) {
|
TreeFilter.cs | 53 TreeParser (derived from a tree grammar) to a tree: 82 public class TreeFilter : TreeParser 105 // share TreeParser object but not parsing-related state
|
TreeRewriter.cs | 36 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/ |
TreeParser.cs | 45 public class TreeParser : BaseRecognizer 58 public TreeParser( ITreeNodeStream input ) 64 public TreeParser( ITreeNodeStream input, RecognizerSharedState state ) 183 if ( this is TreeParser )
|
TreeFilter.cs | 37 public class TreeFilter : TreeParser 60 // share TreeParser object but not parsing-related state
|
TreeRewriter.cs | 39 public class TreeRewriter : TreeParser 69 // share TreeParser object but not parsing-related state
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugTreeParser.java | 32 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/ |
TreeParser.as | 35 public class TreeParser extends BaseRecognizer { 41 public function TreeParser(input:TreeNodeStream, state:RecognizerSharedState = null) { 130 if ( this is TreeParser ) {
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
TreeParser.js | 5 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/tree/ |
TreeFilter.java | 49 TreeParser (derived from a tree grammar) to a tree: 78 public class TreeFilter extends TreeParser { 98 // share TreeParser object but not parsing-related state
|
TreeParser.java | 39 public class TreeParser extends BaseRecognizer { 51 public TreeParser(TreeNodeStream input) { 56 public TreeParser(TreeNodeStream input, RecognizerSharedState state) { 151 if ( this instanceof TreeParser ) {
|
TreeRewriter.java | 34 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/ |
basic.rb | 39 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.new( nodes [all...] |
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testtree.py | 8 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" [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/ |
main-scripts.rb | 150 TreeMainWalker::TreeParser.main( 186 TreeRewriteMainWalker::TreeParser.main(
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
tree.rb | 55 =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 [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/ |
template-output.rb | 400 tree_parser = TreeRewriteTG::TreeParser.new( nodes )
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
auto-ast.rb | 45 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 )
|
rewrites.rb | 45 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 ) [all...] |
hetero-nodes.rb | 614 tree_parser = tree_grammar_module::TreeParser.new( nodes )
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCTP.java | 8 public class SimpleCTP extends TreeParser {
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCTP.java | 8 public class SimpleCTP extends TreeParser {
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/ |
antlr3.rb | 174 :TreeNodeStream, :CommonTreeNodeStream, :TreeParser,
|