Searched refs:new_out (Results 1 – 5 of 5) 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 ); 92 std::ostream* new_out ) = 0; 94 std::ostream& new_out ) = 0; 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 ) 1489 // was if( new_out ) 1490 yyout.rdbuf(new_out.rdbuf()); 1495 void yyFlexLexer::switch_streams( std::istream* new_in, std::ostream* new_out ) 1501 if ( ! new_out ) { 1502 new_out = &yyout; 1505 switch_streams(*new_in, *new_out);
|
/freebsd/contrib/bc/scripts/ |
H A D | sqrt_random.sh | 64 new_out=$(printf '%s\n' "$tst" | "$new" -l) 67 new_good=$(printf '%s == %s\n' "$good" "$new_out" | "$gnu")
|
/freebsd/contrib/flex/ |
H A D | ONEWS | 68 - The FlexLexer::yylex(istream* new_in, ostream* new_out) method 375 ostream* new_out = 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)
|