Home | History | Annotate | Download | only in flex-2.5.4a

Lines Matching refs:FILE

66 /* Returned upon end-of-file. */
92 /* Special action meaning "start processing a new file". */
103 extern FILE *yyin, *yyout;
147 FILE *yy_input_file;
197 * just pointing yyin at a new input file.
229 void yyrestart YY_PROTO(( FILE *input_file ));
233 YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
235 void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
266 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
1523 while ( 1 ) /* loops until end-of-file is reached */
1612 line_directive_out( (FILE *) 0, 1 );
1629 line_directive_out( (FILE *) 0, 1 );
2763 /* We're scanning a new file or input source. It's
2887 * EOB_ACT_END_OF_FILE - end of file
3206 void yyrestart( FILE *input_file )
3209 FILE *input_file;
3264 YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
3266 YY_BUFFER_STATE yy_create_buffer( file, size )
3267 FILE *file;
3288 yy_init_buffer( b, file );
3321 void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
3323 void yy_init_buffer( b, file )
3325 FILE *file;
3332 b->yy_input_file = file;
3341 b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
3653 /* set_input_file - open the given file (if NULL, stdin) for scanning */
3655 void set_input_file( file )
3656 char *file;
3658 if ( file && strcmp( file, "-" ) )
3660 infilename = copy_string( file );
3664 lerrsf( _( "can't open %s" ), file );