Searched refs:new_in (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/flex/src/ |
H A D | FlexLexer.h | 77 int yylex( std::istream& new_in, std::ostream& new_out ) in yylex() argument 79 switch_streams( new_in, new_out ); in yylex() 83 int yylex( std::istream* new_in, std::ostream* new_out = 0) 85 switch_streams( new_in, new_out ); 91 virtual void switch_streams( std::istream* new_in, 93 virtual void switch_streams( std::istream& new_in, 143 virtual void switch_streams( std::istream& new_in, std::ostream& new_out ); 144 virtual void switch_streams( std::istream* new_in = 0, std::ostream* new_out = 0 );
|
H A D | flex.skl | 1483 void yyFlexLexer::switch_streams( std::istream& new_in, std::ostream& new_out ) 1485 // was if( new_in ) 1487 …yy_switch_to_buffer( yy_create_buffer( new_in, YY_BUF_SIZE M4_YY_CALL_LAST_ARG) M4_YY_CALL_LAST_A… 1495 void yyFlexLexer::switch_streams( std::istream* new_in, std::ostream* new_out ) 1497 if( ! new_in ) { 1498 new_in = &yyin; 1505 switch_streams(*new_in, *new_out);
|
/freebsd/contrib/flex/ |
H A D | ONEWS | 68 - The FlexLexer::yylex(istream* new_in, ostream* new_out) method 374 virtual void switch_streams( istream* new_in = 0, 377 reassigns yyin to new_in (if non-nil) and yyout to new_out 381 int yylex( istream* new_in = 0, ostream* new_out = 0 )
|
H A D | ChangeLog | 8117 * FlexLexer.h: remove first default for yylex(new_in, new_out)
|