메소드 |
설명 |
|
AntlrInputStream ( ) : System |
|
|
AntlrInputStream ( Stream input ) : System |
|
|
AntlrInputStream ( Stream input, int initialSize ) : System |
|
|
AntlrInputStream ( Stream input, int initialSize, int readChunkSize ) : System |
|
|
AntlrInputStream ( TextReader r ) : System |
|
|
AntlrInputStream ( TextReader r, int initialSize ) : System |
|
|
AntlrInputStream ( TextReader r, int initialSize, int readChunkSize ) : System |
|
|
AntlrInputStream ( char data, int numberOfActualCharsInArray ) : System |
This is the preferred constructor for strings as no data is copied |
|
AntlrInputStream ( string input ) : System |
Copy data in string to a local char array |
|
Consume ( ) : void |
|
|
GetText ( Interval interval ) : string |
|
|
LA ( int i ) : int |
|
|
Load ( TextReader r, int size, int readChunkSize ) : void |
|
|
Lt ( int i ) : int |
|
|
Mark ( ) : int |
mark/release do nothing; we have entire buffer |
|
Release ( int marker ) : void |
|
|
Reset ( ) : void |
Reset the stream so that it's in the same state it was when the object was created *except* the data array is not touched. Reset the stream so that it's in the same state it was when the object was created *except* the data array is not touched. |
|
Seek ( int index ) : void |
consume() ahead until p==index; can't just set p=index as we must update line and charPositionInLine. consume() ahead until p==index; can't just set p=index as we must update line and charPositionInLine. If we seek backwards, just set p |
|
ToString ( ) : string |
|
|