Home | History | Annotate | Download | only in texinfo

Lines Matching full:scanning

354 scanning routine and (after the declarations) code which is to be
355 executed whenever the scanning routine is entered. Other indented or
610 advantage of using `%pointer' is substantially faster scanning and no
862 scanning routine `yylex()', a number of tables used by it for matching
877 to give the scanning routine the name `lexscan', returning a float,
879 the scanning routine using a K&R-style/non-prototyped function
889 scanning continues from that file), or `yyrestart()' is called.
892 and initializes `yyin' for scanning from that file. Essentially there
896 input files in the middle of scanning. It can also be used to throw
902 If `yylex()' stops scanning due to executing a `return' statement in
904 resume scanning where it left off.
933 `yyin' to point to another input file, and scanning continues. If it
943 Three routines are available for scanning from in-memory buffers
1269 scanning context. `YY_INPUT' is only called when the scanner reaches
1270 the end of its buffer, which may be a long time after scanning a
1298 `yywrap()' to set things up for continued scanning, instead of opening
1378 scanning in-memory strings instead of files. All of them create a new
1379 input buffer for scanning the string, and return a corresponding
1383 start scanning the string.
1394 contents of the buffer it is scanning.) You can avoid the copy by using:
1400 scanned; thus, scanning consists of `base[0]' through
1500 current buffer's scanning context for the next token match is done as
1545 may be redefined but doing so only makes sense before scanning
1547 midst of scanning will have unexpected results since `flex'
1548 buffers its input; use `yyrestart()' instead. Once scanning
1551 continue scanning.
1557 the current input buffer and continues scanning the same input
2204 place in the (short) inner scanning loop, and does not often have to go
2205 through the additional work of setting up the scanning environment
2419 whether or not the scanner might be scanning an interactive input
2431 Note that a `yyFlexLexer' object contains its *entire* scanning
2517 IMPORTANT: the present form of the scanning class is *experimental*