• Home
  • Raw
  • Download

Lines Matching refs:analyzer

118 * Lexer: Rpcalc Lexer.  The lexical analyzer.
134 * Lexer: Ltcalc Lexer. The lexical analyzer.
1419 The tokens come from a function called the "lexical analyzer" that
1421 parser calls the lexical analyzer each time it wants a new token. It
1423 may reflect this). Typically the lexical analyzer makes the tokens by
1430 the lexical analyzer. Another is an error-reporting function which the
1439 analyzer function `yylex', the error reporting function `yyerror' and
1471 2. Write a lexical analyzer to process input and pass tokens to the
1472 parser. The lexical analyzer may be written by hand in C (*note
1517 You need to declare the lexical analyzer `yylex' and the error printer
1579 * Lexer: Rpcalc Lexer. The lexical analyzer.
1717 grammatical error is seen or the lexical analyzer says there are no more
1807 The lexical analyzer's job is low-level parsing: converting characters
1809 tokens by calling the lexical analyzer. *Note The Lexical Analyzer
1812 Only a simple lexical analyzer is needed for the RPN calculator.
1813 This lexical analyzer skips blanks and tabs, then reads in numbers as
1818 The return value of the lexical analyzer function is a numeric code
1823 can use the same character literal in the lexical analyzer to express
1839 Here is the code for the lexical analyzer:
1841 /* The lexical analyzer returns a double floating point
2109 analyzer.
2115 * Lexer: Ltcalc Lexer. The lexical analyzer.
2211 The next step is to rewrite the lexical analyzer, and make it able to
2260 Basically, the lexical analyzer performs the same processing as
2295 they are only single-character literals. The lexical analyzer `yylex'
2847 analyzer has to retrieve the token number for the literal string
3934 is used for the lexical analyzer function `yylex'. *Note Calling
4244 The "lexical analyzer" function, `yylex', recognizes tokens from the
7657 User-supplied lexical analyzer function, called with no arguments
7809 Lexical analyzer (scanner)
7843 from a lexical analyzer.
7902 the lexical analyzer. *Note Symbols::.
8637 * lexical analyzer: Lexical. (line 6)
8638 * lexical analyzer, purpose: Bison Parser. (line 6)
8639 * lexical analyzer, writing: Rpcalc Lexer. (line 6)
8784 * writing a lexical analyzer: Rpcalc Lexer. (line 6)