HomeSort by relevance Sort by last modified time
    Searched full:treeparser (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/xcuserdata/acondit.xcuserdatad/xcschemes/
treeparser.xcscheme 17 BuildableName = "treeparser"
18 BlueprintName = "treeparser"
44 BuildableName = "treeparser"
45 BlueprintName = "treeparser"
63 BuildableName = "treeparser"
64 BlueprintName = "treeparser"
xcschememanagement.plist 57 <key>treeparser.xcscheme</key>
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
main.m 35 NSLog(@"starting treeparser\n");
36 NSString *dir = @"/Users/acondit/source/antlr3/acondit_localhost/code/antlr/main/runtime/ObjC/Framework/examples/treeparser/input";
53 NSLog(@"exiting treeparser\n");
  /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/Ruby/test/functional/ast-output/
tree-rewrite.rb 1012 walker = FlatListWalker::TreeParser.new( nodes )
1026 walker = SimpleTreeWalker::TreeParser.new( nodes )
1040 walker = CombinedRewriteAndAutoWalker::TreeParser.new( nodes )
1050 walker = CombinedRewriteAndAutoWalker::TreeParser.new( nodes )
1063 walker = AvoidDupWalker::TreeParser.new( nodes )
1077 walker = LoopWalker::TreeParser.new( nodes )
1091 walker = AutoDupWalker::TreeParser.new( nodes )
1105 walker = AutoDupRuleWalker::TreeParser.new( nodes )
1119 walker = AutoWildcardWalker::TreeParser.new( nodes )
1133 walker = AutoWildcard2Walker::TreeParser.new( nodes
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeFilter.cs 37 public class TreeFilter : TreeParser
60 // share TreeParser object but not parsing-related state
TreeParser.cs 45 public class TreeParser : BaseRecognizer
58 public TreeParser( ITreeNodeStream input )
64 public TreeParser( ITreeNodeStream input, RecognizerSharedState state )
183 if ( this is TreeParser )
TreeRewriter.cs 39 public class TreeRewriter : TreeParser
69 // share TreeParser object but not parsing-related state
  /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) {
TreeRewriter.cs 36 public class TreeRewriter<TTree> : TreeParser {
59 // share TreeParser object but not parsing-related state
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
  /external/antlr/antlr-3.4/runtime/Python/
ChangeLog 24 * Python.stg (genericParser, parser, treeParser): Use correct @init
  /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/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/Java/src/main/java/org/antlr/runtime/tree/
TreeRewriter.java 34 public class TreeRewriter extends TreeParser {
56 // share TreeParser object but not parsing-related state
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 ) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
main.m 66 // Create the treeparser instance, passing it the stream of nodes
68 // As with parsers, you can invoke any treeparser rule here.
  /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/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/CSharp2/
API CHANGES.TXT 26 Antlr.Runtime.TreeParser - return type has been changed to ITreeNodeStream
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
antlr3.properties 51 org/antlr/runtime/tree/TreeParser.js
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
__init__.py 25 - tree.TreeParser: Base class for %tree parser.
50 And tree.TreeParser finally fetches its input from a tree.TreeNodeStream:

Completed in 575 milliseconds

1 2 3 4 5