HomeSort by relevance Sort by last modified time
    Searched refs:CommonTree (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 16 class V < ANTLR3::CommonTree
35 class V < ANTLR3::CommonTree
54 class V < ANTLR3::CommonTree
73 class V < ANTLR3::CommonTree
92 class V < ANTLR3::CommonTree
112 class V < ANTLR3::CommonTree
132 class V < ANTLR3::CommonTree
152 class V < ANTLR3::CommonTree
172 class V < ANTLR3::CommonTree
192 class V < ANTLR3::CommonTree
    [all...]
tree-rewrite.rb 25 ASTLabelType=CommonTree;
49 ASTLabelType=CommonTree;
72 ASTLabelType=CommonTree;
95 ASTLabelType=CommonTree;
118 ASTLabelType=CommonTree;
141 ASTLabelType=CommonTree;
164 ASTLabelType=CommonTree;
183 options {language=Ruby;output=AST; ASTLabelType=CommonTree; tokenVocab=AutoWildcard;}
199 options {language=Ruby;output=AST; ASTLabelType=CommonTree; tokenVocab=AutoWildcard2;}
215 options {language=Ruby;output=AST; ASTLabelType=CommonTree; tokenVocab=AutoWildcardWithLabel;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarParser.cs 125 internal CommonTree tree;
136 CommonTree root_0 = null;
158 root_0 = (CommonTree)adaptor.Nil();
224 retval.tree = (CommonTree)adaptor.RulePostProcessing(root_0);
232 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re);
257 internal CommonTree tree;
268 CommonTree root_0 = null;
280 CommonTree NEWLINE3_tree=null;
281 CommonTree ID4_tree=null;
282 CommonTree char_literal5_tree=null
    [all...]
ProfileGrammarParser.cs 129 internal CommonTree tree;
140 CommonTree root_0 = null;
162 root_0 = (CommonTree)adaptor.Nil();
228 retval.tree = (CommonTree)adaptor.RulePostProcessing(root_0);
236 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re);
261 internal CommonTree tree;
272 CommonTree root_0 = null;
284 CommonTree NEWLINE3_tree=null;
285 CommonTree ID4_tree=null;
286 CommonTree char_literal5_tree=null
    [all...]
DebugGrammar.g3 39 ASTLabelType=CommonTree;
ProfileGrammar.g3 39 ASTLabelType=CommonTree;
DebugTreeGrammar.g3 39 ASTLabelType=CommonTree;
76 CommonTree funcRoot = findFunction($ID.text, p);
ProfileTreeGrammar.g3 39 ASTLabelType=CommonTree;
76 CommonTree funcRoot = findFunction($ID.text, p);
  /external/smali/smali/src/main/java/org/jf/smali/
SemanticException.java 35 import org.antlr.runtime.tree.CommonTree;
51 SemanticException(IntStream input, CommonTree tree, String errorMessage, Object... messageArguments) {
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-trees.rb 21 t = CommonTree.new(CommonToken.new { |t| t.type = 101 })
36 v = Class.new(CommonTree) do
60 t = CommonTree.new CommonToken[101]
61 t.add_child( CommonTree.new CommonToken[102] )
62 t.child(0).add_child(CommonTree.new CommonToken[103])
63 t.add_child(CommonTree.new CommonToken[104])
77 root = CommonTree.new(nil)
78 t = CommonTree.new CommonToken[101]
79 t.add_child CommonTree.new(CommonToken[102])
80 t.child(0).add_child(CommonTree.new(CommonToken[103])
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeAdaptor.cs 68 return new CommonTree(payload);
163 * you are not using CommonTree, then you must
168 if (t is CommonTree) {
169 return ((CommonTree)t).Token;
TreeRewriter.cs 69 if (typeof(CommonTree).IsAssignableFrom(typeof(TTree))) {
72 Console.Out.WriteLine(((CommonTree)t).ToStringTree() + " -> " +
73 ((CommonTree)(object)r.Tree).ToStringTree());
CommonErrorNode.cs 37 public class CommonErrorNode : CommonTree {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
RewriteRuleXxxxStreamFixture.cs 202 CommonTree tree = (CommonTree) tokenTest.NextNode();
277 CommonTree returnedTree = (CommonTree) subtreeTest.NextTree();
293 returnedTree = (CommonTree) subtreeTest.NextTree();
298 returnedTree = (CommonTree) subtreeTest.NextTree();
322 CommonTree returnedTree = (CommonTree) nodeTest.NextNode();
332 returnedTree = (CommonTree) nodeTest.NextTree();
348 returnedTree = (CommonTree) nodeTest.NextTree()
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTreeAdaptor.java 56 return new CommonTree(payload);
125 * you are not using CommonTree, then you must
129 if ( t instanceof CommonTree ) {
130 return ((CommonTree)t).getToken();
Tree.java 45 public static final Tree INVALID_NODE = new CommonTree(Token.INVALID_TOKEN);
CommonErrorNode.java 33 public class CommonErrorNode extends CommonTree {
  /external/smali/smali/src/main/antlr3/
smaliParser.g 33 ASTLabelType=CommonTree;
359 private CommonTree buildTree(int type, String text, List<CommonTree> children) {
360 CommonTree root = new CommonTree(new CommonToken(type, text));
361 for (CommonTree child: children) {
417 private CommonTree parseParamList(CommonToken paramListToken) {
419 CommonTree root = new CommonTree();
426 root.addChild(new CommonTree(token))
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognitionException.as 32 import org.antlr.runtime.tree.CommonTree;
155 if ( this.node is CommonTree) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognitionException.java 155 if ( this.node instanceof CommonTree) {
156 this.token = ((CommonTree)this.node).token;
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeAdaptor.js 31 return new org.antlr.runtime.tree.CommonTree(payload);
126 * you are not using CommonTree, then you must
130 if ( t instanceof org.antlr.runtime.tree.CommonTree ) {
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
basic.rb 24 ASTLabelType=CommonTree;
60 ASTLabelType=CommonTree;
98 ASTLabelType=CommonTree;
137 ASTLabelType=CommonTree;
175 ASTLabelType=CommonTree;
210 ASTLabelType=CommonTree;
246 ASTLabelType=CommonTree;
282 ASTLabelType=CommonTree;
319 ASTLabelType=CommonTree;
351 options {language=Ruby; tokenVocab=WildcardLookahead; ASTLabelType=CommonTree;}
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/
TestExpressionFeatures.g3 39 ASTLabelType=CommonTree;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonTreeNodeStream.as 385 if ( start is CommonTree )
386 trace("toString: "+CommonTree(start).token+", ");
389 if ( stop is CommonTree )
390 trace(CommonTree(stop).token);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 38 public class CommonErrorNode : CommonTree

Completed in 426 milliseconds

12 3 4 5