Lines Matching full:lexer
6 /// according to whether your grammar file contains a lexer, parser, combined or treeparser specification.
15 /// <td> lexer grammar (G.g3l) </td>
50 /// In order to run your lexer/parser/tree parser combination, you will need a small function (or main)
103 /// // The lexer is of course generated by ANTLR, and so the lexer type is not upper case.
104 /// // The lexer is supplied with a pANTLR3_INPUT_STREAM from whence it consumes its
106 /// // for your lexer.
110 /// // The token stream is produced by the ANTLR3 generated lexer. Again it is a structure based
172 /// // lexer and set the lexer input to our input stream:
173 /// // (file | memory | ?) --> inputstream -> lexer --> tokenstream --> parser ( --> treeparser )?
181 /// ANTLR3_FPRINTF(stderr, "Unable to create the lexer due to malloc() failure1\n");
185 /// // Our lexer is in place, so we can create the token stream from it
189 /// // unless you have a very large token stream/input. Each generated lexer
205 /// // Finally, now that we have our lexer constructed, we can create the parser
227 /// // automatically when you close the parser/lexer/etc.