/external/antlr/runtime/Cpp/include/ |
D | antlr3commontreenodestream.inl | 4 CommonTreeNodeStream<ImplTraits>::CommonTreeNodeStream(ANTLR_UINT32 hint) 10 void CommonTreeNodeStream<ImplTraits>::init( ANTLR_UINT32 hint ) 50 CommonTreeNodeStream<ImplTraits>::CommonTreeNodeStream( const CommonTreeNodeStream& ctn ) function in CommonTreeNodeStream 75 CommonTreeNodeStream<ImplTraits>::CommonTreeNodeStream( TreeType* tree, ANTLR_UINT32 hint ) function in CommonTreeNodeStream 82 CommonTreeNodeStream<ImplTraits>::~CommonTreeNodeStream() 104 typename CommonTreeNodeStream<ImplTraits>::TreeType* CommonTreeNodeStream<ImplTraits>::_LT(ANTLR_IN… 131 typename CommonTreeNodeStream<ImplTraits>::TreeType* CommonTreeNodeStream<ImplTraits>::getTreeSourc… 137 typename CommonTreeNodeStream<ImplTraits>::TreeAdaptorType* CommonTreeNodeStream<ImplTraits>::getTr… 143 void CommonTreeNodeStream<ImplTraits>::set_uniqueNavigationNodes(bool uniqueNavigationNodes) 149 typename CommonTreeNodeStream<ImplTraits>::StringType CommonTreeNodeStream<ImplTraits>::toString() [all …]
|
D | antlr3commontreenodestream.hpp | 41 class CommonTreeNodeStream : public ImplTraits::TreeNodeIntStreamType class 182 CommonTreeNodeStream( ANTLR_UINT32 hint ); 183 CommonTreeNodeStream( const CommonTreeNodeStream& ctn ); 184 CommonTreeNodeStream( TreeType* tree, ANTLR_UINT32 hint ); 187 ~CommonTreeNodeStream();
|
/external/antlr/runtime/ObjC/Framework/examples/polydiff/ |
D | main.m | 27 CommonTreeNodeStream *nodes = [CommonTreeNodeStream newCommonTreeNodeStream:r.tree]; 34 nodes = [CommonTreeNodeStream newCommonTreeNodeStream:r2.tree]; 41 nodes = [CommonTreeNodeStream newCommonTreeNodeStream:r3.tree];
|
/external/antlr/runtime/ObjC/Framework/examples/treeparser/ |
D | main.m | 24 CommonTreeNodeStream nodes = new CommonTreeNodeStream(r0); 48 CommonTreeNodeStream *nodes = [CommonTreeNodeStream newCommonTreeNodeStream:r0];
|
D | Main.java | 15 CommonTreeNodeStream nodes = new CommonTreeNodeStream(r0); in main()
|
/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 | Smali.java | 39 import org.antlr.runtime.tree.CommonTreeNodeStream; 188 CommonTreeNodeStream treeStream = new CommonTreeNodeStream(t); in assembleSmaliFile()
|
/external/antlr/runtime/ObjC/Framework/ |
D | CommonTreeNodeStream.h | 35 @interface CommonTreeNodeStream : LookaheadStream <TreeNodeStream> { 65 + (CommonTreeNodeStream *) newCommonTreeNodeStream:(CommonTree *)theTree; 66 + (CommonTreeNodeStream *) newCommonTreeNodeStream:(id<TreeAdaptor>)anAdaptor Tree:(CommonTree *)th…
|
D | CommonTreeNodeStream.m | 27 #import "CommonTreeNodeStream.h" 38 @implementation CommonTreeNodeStream implementation 45 + (CommonTreeNodeStream *) newCommonTreeNodeStream:(CommonTree *)theTree 47 return [[CommonTreeNodeStream alloc] initWithTree:theTree]; 50 + (CommonTreeNodeStream *) newCommonTreeNodeStream:(id<TreeAdaptor>)anAdaptor Tree:(CommonTree *)th… 52 return [[CommonTreeNodeStream alloc] initWithTreeAdaptor:anAdaptor Tree:theTree]; 90 NSLog( @"called dealloc in CommonTreeNodeStream" );
|
/external/antlr/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/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | TreeFilter.cs | 62 SetTreeNodeStream(new CommonTreeNodeStream(originalAdaptor, t)); in ApplyOnce() 63 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream; in ApplyOnce()
|
D | CommonTreeNodeStream.cs | 41 …public class CommonTreeNodeStream : LookaheadStream<object>, ITreeNodeStream, IPositionTrackingStr… class 79 public CommonTreeNodeStream( object tree ) in CommonTreeNodeStream() method in Antlr.Runtime.Tree.CommonTreeNodeStream 84 public CommonTreeNodeStream( ITreeAdaptor adaptor, object tree ) in CommonTreeNodeStream() method in Antlr.Runtime.Tree.CommonTreeNodeStream
|
D | TreeRewriter.cs | 71 SetTreeNodeStream(new CommonTreeNodeStream(originalAdaptor, t)); in ApplyOnce() 72 ( (CommonTreeNodeStream)input ).TokenStream = originalTokenStream; in ApplyOnce()
|
/external/antlr/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/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/runtime/ObjC/Framework/examples/treerewrite/ |
D | main.m | 23 // CommonTreeNodeStream *treeStream = [[CommonTreeNodeStream alloc] initWithTree:program_tree];
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/ |
D | ProfileTreeGrammarHelper.cs | 54 public ProfileTreeGrammar(CommonTreeNodeStream nodes, List<CommonTree> functionDefinitions) in ProfileTreeGrammar() 70 : this(new CommonTreeNodeStream(function.GetChild(2)), functionDefinitions) in ProfileTreeGrammar()
|
D | DebugTreeGrammarHelper.cs | 54 public DebugTreeGrammar(CommonTreeNodeStream nodes, List<CommonTree> functionDefinitions) in DebugTreeGrammar() 70 : this(new CommonTreeNodeStream(function.GetChild(2)), functionDefinitions) in DebugTreeGrammar()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTreeNodeStream.java | 36 public class CommonTreeNodeStream extends LookaheadStream<Object> implements TreeNodeStream, Positi… class 72 public CommonTreeNodeStream(Object tree) { in CommonTreeNodeStream() method in CommonTreeNodeStream 76 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()
|
/external/antlr/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/runtime/Python3/tests/ |
D | t047treeparser.py | 64 nodes = antlr3.tree.CommonTreeNodeStream(r.tree) 113 nodes = antlr3.tree.CommonTreeNodeStream(r.tree)
|
/external/antlr/runtime/Python/tests/ |
D | t047treeparser.py | 64 nodes = antlr3.tree.CommonTreeNodeStream(r.tree) 113 nodes = antlr3.tree.CommonTreeNodeStream(r.tree)
|