Uses of Interface
at.dms.compiler.tools.antlr.runtime.TokenStream

Packages that use TokenStream
at.dms.compiler.tools.antlr.compiler   
at.dms.compiler.tools.antlr.extra   
at.dms.compiler.tools.antlr.runtime   
at.dms.compiler.tools.lexgen   
at.dms.compiler.tools.msggen   
at.dms.compiler.tools.optgen   
 

Uses of TokenStream in at.dms.compiler.tools.antlr.compiler
 

Classes in at.dms.compiler.tools.antlr.compiler that implement TokenStream
 class ActionLexer
          Perform the following translations: Text related translations $append(x) -> text.append(x) $setText(x) -> text.setLength(_begin); text.append(x) $getText -> new String(text.getBuffer(),_begin,text.length()-_begin) $setToken(x) -> _token = x $setType(x) -> _ttype = x
 class ANTLRLexer
           
 class ANTLRTokdefLexer
           
 class PreprocessorLexer
           
 

Constructors in at.dms.compiler.tools.antlr.compiler with parameters of type TokenStream
ANTLRParser(TokenStream lexer)
           
ANTLRParser(TokenStream lexer, int k)
           
ANTLRTokdefParser(TokenStream lexer)
           
ANTLRTokdefParser(TokenStream lexer, int k)
           
Preprocessor(TokenStream lexer)
           
Preprocessor(TokenStream lexer, int k)
           
 

Uses of TokenStream in at.dms.compiler.tools.antlr.extra
 

Classes in at.dms.compiler.tools.antlr.extra that implement TokenStream
 class Scanner
          This class describes the capabilities of lexers (token streams) to share a common input buffer and to handle line numbers.
 

Uses of TokenStream in at.dms.compiler.tools.antlr.runtime
 

Classes in at.dms.compiler.tools.antlr.runtime that implement TokenStream
 class CharScanner
           
 

Fields in at.dms.compiler.tools.antlr.runtime declared as TokenStream
protected  TokenStream TokenBuffer.input
           
 

Methods in at.dms.compiler.tools.antlr.runtime that return TokenStream
 TokenStream TokenBuffer.getInput()
          return the Tokenizer (needed by ParseView)
 

Methods in at.dms.compiler.tools.antlr.runtime with parameters of type TokenStream
protected  void Parser.defaultDebuggingSetup(TokenStream lexer, TokenBuffer tokBuf)
           
 

Constructors in at.dms.compiler.tools.antlr.runtime with parameters of type TokenStream
LLkParser(TokenStream lexer, int k_)
           
TokenBuffer(TokenStream input_)
          Create a token buffer
 

Uses of TokenStream in at.dms.compiler.tools.lexgen
 

Classes in at.dms.compiler.tools.lexgen that implement TokenStream
 class LexgenLexer
           
 

Constructors in at.dms.compiler.tools.lexgen with parameters of type TokenStream
LexgenParser(TokenStream lexer)
           
LexgenParser(TokenStream lexer, int k)
           
 

Uses of TokenStream in at.dms.compiler.tools.msggen
 

Classes in at.dms.compiler.tools.msggen that implement TokenStream
 class MsggenLexer
           
 

Constructors in at.dms.compiler.tools.msggen with parameters of type TokenStream
MsggenParser(TokenStream lexer)
           
MsggenParser(TokenStream lexer, int k)
           
 

Uses of TokenStream in at.dms.compiler.tools.optgen
 

Classes in at.dms.compiler.tools.optgen that implement TokenStream
 class OptgenLexer
           
 

Constructors in at.dms.compiler.tools.optgen with parameters of type TokenStream
OptgenParser(TokenStream lexer)
           
OptgenParser(TokenStream lexer, int k)