Searched refs:TokenStream (Results 51 - 75 of 105) sorted by path

12345

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonErrorNode.java39 public CommonErrorNode(TokenStream input, Token start, Token stop,
73 j = ((TokenStream)input).size();
75 badText = ((TokenStream)input).toString(i, j);
H A DCommonTreeNodeStream.java31 import org.antlr.runtime.TokenStream;
45 protected TokenStream tokens;
108 public TokenStream getTokenStream() { return tokens; }
110 public void setTokenStream(TokenStream tokens) { this.tokens = tokens; }
H A DTreeAdaptor.java31 import org.antlr.runtime.TokenStream;
82 public Object errorNode(TokenStream input, Token start, Token stop, RecognitionException e);
H A DTreeFilter.java32 import org.antlr.runtime.TokenStream;
83 protected TokenStream originalTokenStream;
H A DTreeNodeStream.java31 import org.antlr.runtime.TokenStream;
48 * This is analogus to the LT() method of the TokenStream, but this
59 /** If the tree associated with this stream was created from a TokenStream,
64 public TokenStream getTokenStream();
H A DTreeRewriter.java32 import org.antlr.runtime.TokenStream;
41 protected TokenStream originalTokenStream;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DCommonTokenStream.js20 org.antlr.runtime.TokenStream = function() {};
23 org.antlr.runtime.TokenStream,
H A DRecognitionException.js35 if ( input instanceof org.antlr.runtime.TokenStream ) {
169 if ( this.input instanceof org.antlr.runtime.TokenStream ) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCParser.java44 public SimpleCParser(TokenStream input) {
47 public SimpleCParser(TokenStream input, RecognizerSharedState state) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCParser.java44 public SimpleCParser(TokenStream input) {
47 public SimpleCParser(TokenStream input, RecognizerSharedState state) {
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DTokenStream.pm1 package ANTLR::Runtime::TokenStream;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py32 from antlr3 import Parser, TokenStream, RecognitionException, Token namespace
88 class DebugTokenStream(TokenStream):
98 # force TokenStream to get at least first valid token
H A Dexceptions.py116 from antlr3.streams import TokenStream, CharStream namespace
119 if isinstance(self.input, TokenStream):
180 from antlr3.streams import TokenStream namespace
183 if isinstance(self.input, TokenStream):
213 """An extra token while parsing a TokenStream"""
H A Dstreams.py45 # \- TokenStream
243 class TokenStream(IntStream): class in inherits:IntStream
600 # TokenStream
607 class CommonTokenStream(TokenStream):
627 TokenStream.__init__(self)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddebug.rb164 if @input.is_a?( Debug::TokenStream )
167 @input = Debug::TokenStream.wrap( @input, @debug_listener )
286 =begin rdoc ANTLR3::Debug::TokenStream
290 not already a Debug::TokenStream.
293 module TokenStream module in class:ANTLR3.Debug
H A Derror.rb116 when TokenStream
149 when TokenStream
H A Dstreams.rb71 The job of a TokenStream is to read lexer output and then provide ANTLR
73 CommonTokenStream is the default TokenStream implementation.
270 =begin rdoc ANTLR3::TokenStream
272 TokenStream further extends the abstract-ish base mixin Stream to add methods
298 == The TokenStream Interface
301 Stream module, TokenStream adds a number of additional method implementation
306 module TokenStream module in class:ANTLR3.that
756 include TokenStream
H A Dtemplate.rb76 | to a ANTLR3::TokenStream object as #{ self.class }
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DANTLR.g144 public static ANTLRParser createParser(TokenStream input) {
156 public GrammarASTErrorNode(TokenStream input, Token start, Token stop, RecognitionException e) {
185 j = ((TokenStream)input).size();
187 badText = ((TokenStream)input).toString(i, j);
245 public Object errorNode(TokenStream input, Token start, Token stop, RecognitionException e) {
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DInterpreter.java338 actions.consumeToken(((TokenStream)input).LT(1));
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg1623 (<scope>!=null?(input.TokenStream.ToString(
1663 input.TokenStream.ToString(
H A DST.stg103 ((TokenRewriteStream)input.TokenStream).Replace(
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg1607 (<scope>!=null?(input.TokenStream.ToString(
1647 input.TokenStream.ToString(
H A DST.stg80 ((TokenRewriteStream)input.TokenStream).Replace(
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg1717 IfThen(Assigned(<scope>), Input.TokenStream.ToString(
1744 Input.TokenStream.ToString(

Completed in 2179 milliseconds

12345