/external/smali/smali/src/main/java/org/jf/smali/ |
D | SmaliTestUtils.java | 39 import org.antlr.runtime.tree.CommonTreeNodeStream; 80 CommonTreeNodeStream treeStream = new CommonTreeNodeStream(t); in compileSmali()
|
D | main.java | 38 import org.antlr.runtime.tree.CommonTreeNodeStream; 350 CommonTreeNodeStream treeStream = new CommonTreeNodeStream(t); in assembleSmaliFile()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | CommonTreeNodeStream.cs | 41 public class CommonTreeNodeStream : LookaheadStream<object>, ITreeNodeStream { class 67 public CommonTreeNodeStream(object tree) in CommonTreeNodeStream() method in Antlr.Runtime.Tree.CommonTreeNodeStream 71 public CommonTreeNodeStream(ITreeAdaptor adaptor, object tree) { in CommonTreeNodeStream() method in Antlr.Runtime.Tree.CommonTreeNodeStream
|
D | TreeFilter.cs | 107 input = new CommonTreeNodeStream( originalAdaptor, t ); in ApplyOnce() 108 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream; in ApplyOnce()
|
D | TreeRewriter.cs | 61 input = new CommonTreeNodeStream(originalAdaptor, t); in ApplyOnce() 62 ((CommonTreeNodeStream)input).TokenStream = originalTokenStream; in ApplyOnce()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | CommonTreeNodeStream.cs | 42 public class CommonTreeNodeStream : LookaheadStream<object>, ITreeNodeStream class 69 public CommonTreeNodeStream( object tree ) in CommonTreeNodeStream() method in Antlr.Runtime.Tree.CommonTreeNodeStream 74 public CommonTreeNodeStream( ITreeAdaptor adaptor, object tree ) in CommonTreeNodeStream() method in Antlr.Runtime.Tree.CommonTreeNodeStream
|
D | TreeFilter.cs | 62 input = new CommonTreeNodeStream( originalAdaptor, t ); in ApplyOnce() 63 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream; in ApplyOnce()
|
D | TreeRewriter.cs | 71 input = new CommonTreeNodeStream( originalAdaptor, t ); in ApplyOnce() 72 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream; in ApplyOnce()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTreeNodeStream.java | 37 public class CommonTreeNodeStream extends LookaheadStream<Object> implements TreeNodeStream { class 62 public CommonTreeNodeStream(Object tree) { in CommonTreeNodeStream() method in CommonTreeNodeStream 66 public CommonTreeNodeStream(TreeAdaptor adaptor, Object tree) { in CommonTreeNodeStream() method in CommonTreeNodeStream
|
D | TreeFilter.java | 100 input = new CommonTreeNodeStream(originalAdaptor, t); in applyOnce() 101 ((CommonTreeNodeStream)input).setTokenStream(originalTokenStream); in applyOnce()
|
D | TreeRewriter.java | 58 input = new CommonTreeNodeStream(originalAdaptor, t); in applyOnce() 59 ((CommonTreeNodeStream)input).setTokenStream(originalTokenStream); in applyOnce()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/ |
D | Main.java | 15 CommonTreeNodeStream nodes = new CommonTreeNodeStream(r0); in main()
|
D | main.m | 24 CommonTreeNodeStream nodes = new CommonTreeNodeStream(r0);
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
D | test-trees.rb | 17 CommonTreeNodeStream.new(t) 88 stream = CommonTreeNodeStream.new(root) 106 stream = CommonTreeNodeStream.new( root ) 122 stream = CommonTreeNodeStream.new(root) 173 stream = CommonTreeNodeStream.new(r0) 199 stream = CommonTreeNodeStream.new(r0) 232 stream = CommonTreeNodeStream.new(r0) 266 stream = CommonTreeNodeStream.new(r0) 285 stream = CommonTreeNodeStream.new(r0) 337 stream = CommonTreeNodeStream.new(r0) [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/ |
D | Program.cs | 44 var simplify = new Simplify(new CommonTreeNodeStream(t)); in _Main() 47 var reduce = new Reduce(new CommonTreeNodeStream(t)); in _Main()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
D | DebugTreeGrammarHelper.cs | 52 public DebugTreeGrammar( CommonTreeNodeStream nodes, List<CommonTree> functionDefinitions ) in DebugTreeGrammar() 68 : this( new CommonTreeNodeStream( function.GetChild( 2 ) ), functionDefinitions ) in DebugTreeGrammar()
|
D | ProfileTreeGrammarHelper.cs | 52 public ProfileTreeGrammar( CommonTreeNodeStream nodes, List<CommonTree> functionDefinitions ) in ProfileTreeGrammar() 68 : this( new CommonTreeNodeStream( function.GetChild( 2 ) ), functionDefinitions ) in ProfileTreeGrammar()
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | CommonTreeNodeStream.js | 17 org.antlr.runtime.tree.CommonTreeNodeStream = function(adaptor, class in org.antlr.runtime.tree 27 org.antlr.runtime.tree.CommonTreeNodeStream.DEFAULT_INITIAL_BUFFER_SIZE; 47 org.antlr.lang.augmentObject(org.antlr.runtime.tree.CommonTreeNodeStream, { 52 org.antlr.lang.extend(org.antlr.runtime.tree.CommonTreeNodeStream,
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t047treeparser.py | 64 nodes = antlr3.tree.CommonTreeNodeStream(r.tree) 113 nodes = antlr3.tree.CommonTreeNodeStream(r.tree)
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
D | testtree.py | 7 from antlr3.tree import (CommonTreeNodeStream, CommonTree, CommonTreeAdaptor, 21 return CommonTreeNodeStream(t) 99 stream = CommonTreeNodeStream(root) 116 stream = CommonTreeNodeStream(root) 131 stream = CommonTreeNodeStream(root) 190 stream = CommonTreeNodeStream(r0) 223 stream = CommonTreeNodeStream(r0) 267 stream = CommonTreeNodeStream(r0) 306 stream = CommonTreeNodeStream(r0) 332 stream = CommonTreeNodeStream(r0) [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/ |
D | ITreeNodeStreamFixture.cs | 46 using CommonTreeNodeStream = Antlr.Runtime.Tree.CommonTreeNodeStream; typedef 550 #region CommonTreeNodeStream Tests 563 for (int i = 0; i <= CommonTreeNodeStream.DEFAULT_INITIAL_BUFFER_SIZE + 10; i++) in testBufferOverflow() 602 for (int i = 0; i < CommonTreeNodeStream.DEFAULT_INITIAL_BUFFER_SIZE + N; i++) in testBufferWrap() 617 int remaining = CommonTreeNodeStream.DEFAULT_INITIAL_BUFFER_SIZE - N; in testBufferWrap() 639 return new CommonTreeNodeStream(t); in CreateCommonTreeNodeStream()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
D | CommonTreeNodeStream.as | 50 public class CommonTreeNodeStream implements TreeNodeStream { class in org.antlr.runtime.tree 95 …public function CommonTreeNodeStream(tree:Object, adaptor:TreeAdaptor = null, initialBufferSize:in… method in org.antlr.runtime.tree.CommonTreeNodeStream 114 …public static function reuse(parent:CommonTreeNodeStream, start:int, stop:int):CommonTreeNodeStrea… 115 var stream:CommonTreeNodeStream = new CommonTreeNodeStream(null);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
D | gUnitBaseTest.java | 33 import org.antlr.runtime.tree.CommonTreeNodeStream; 367 CommonTreeNodeStream nodes; in execTreeParser() 369 nodes = new CommonTreeNodeStream(customTreeAdaptor, tree); in execTreeParser() 372 nodes = new CommonTreeNodeStream(tree); in execTreeParser()
|
D | gUnitExecutor.java | 32 import org.antlr.runtime.tree.CommonTreeNodeStream; 501 CommonTreeNodeStream nodes; in runTreeParser() 503 nodes = new CommonTreeNodeStream(customTreeAdaptor, tree); in runTreeParser() 506 nodes = new CommonTreeNodeStream(tree); in runTreeParser()
|
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/ |
D | Main.java | 180 TTree walker = new TTree(new CommonTreeNodeStream(t));
|