Lines Matching full:stream
11 * A lexer class contains a character input stream, a base recognizer interface
15 * tokens in place of a raw character stream.
19 * - Create a character stream (something which implements ANTLR3_INPUT_STREAM)
21 * - Create a lexer interface and tell it where it its input stream is.
91 /** A pointer to the character stream whence this lexer is receiving
94 * the input stream as per the java implementation.
112 /** Pointer to a function that switches the current character input stream to
118 /** Pointer to a function that abandons the current input stream, whether it
119 * is empty or not and reverts to the previous stacked input stream.
124 * the stream.
142 * stream. Note that strings muse be passed as terminated arrays of ANTLR3_UCHAR. Strings are terminated
147 /** Pointer to a function that matches and consumes the specified character from the input stream.
148 * The input stream is required to provide characters via LA() as UTF32 characters. The default lexer
160 /** Pointer to a function that matches the next token/char in the input stream
165 /** Pointer to a function that recovers from an error found in the input stream.
171 /** Pointer to function to return the current line number in the input stream