Lines Matching refs:interactive
150 interactive -I option
164 always-interactive generate a scanner which always
165 considers its input "interactive" (no call to isatty()
169 never-interactive generate a scanner which never
170 considers its input "interactive" (no call to isatty()
306 "interactive". An interactive buffer is processed more slowly,
308 interactive to avoid problems due to waiting to fill buffers
310 in the macro invocation marks the buffer as interactive, a zero
311 value as non-interactive. Note that use of this macro overrides
312 "%option always-interactive" or "%option never-interactive".
422 - interactive scanners now read characters in YY_INPUT up to a
565 - Fixed serious input problem for interactive scanners on
687 - Scanners now use fread() (or getc(), if interactive) and not
738 - Scanners with compressed tables are now "interactive" (-I option)
872 - Fixed bug in scanning NUL characters using an "interactive" scanner.
990 writing an interactive scanner one must explictly call fflush()
994 "yyrestart( yyin );". This is useful for interactive scanners