Lines Matching refs:out
175 …basic_fstream<char,char_traits<char> > f( "test_file.txt", ios_base::in | ios_base::out | ios_base… in io()
210 …basic_fstream<char,char_traits<char> > f( "test_file.txt", ios_base::in | ios_base::out | ios_base… in err()
232 ofstream of("test_file.txt", ios_base::out | ios_base::binary | ios_base::trunc); in tellg()
299 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(6) ); in tellp()
307 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(9) ); in tellp()
338 ofstream o( "test_file.txt", ios_base::app | ios_base::out ); in tellp()
339 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(expe… in tellp()
355 ofstream o( "test_file.txt", ios_base::app | ios_base::out ); in tellp()
357 …CPPUNIT_CHECK( o.rdbuf()->pubseekoff( 0, ios_base::cur, ios_base::out ) == ofstream::pos_type(10) … in tellp()
364 fstream ss( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc ); in buf()
394 … fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc ); in seek()
402 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary ); in seek()
420 fstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc ); in seek()
428 fstream s( "test_file.txt", ios_base::in | ios_base::out ); in seek()
469 wfstream s( "test_file.txt", ios_base::in | ios_base::out | ios_base::trunc ); in seek()
479 wfstream s( "test_file.txt", ios_base::in | ios_base::out ); in seek()
511 fstream ss( "test_file.txt", ios_base::in | ios_base::out | ios_base::binary | ios_base::trunc ); in rdbuf()
542 ostream out(&full_buf); in streambuf_output() local
543 CPPUNIT_ASSERT( out ); in streambuf_output()
545 out << in.rdbuf(); in streambuf_output()
546 CPPUNIT_ASSERT( out ); in streambuf_output()
550 out << in.rdbuf(); in streambuf_output()
551 CPPUNIT_ASSERT( out.fail() ); in streambuf_output()
568 ostream out(&full_buf); in streambuf_output() local
569 CPPUNIT_ASSERT( out ); in streambuf_output()
571 out << in.rdbuf(); in streambuf_output()
572 CPPUNIT_ASSERT( out.bad() ); in streambuf_output()
577 out.clear(); in streambuf_output()
578 out << in.rdbuf(); in streambuf_output()
579 CPPUNIT_ASSERT( out.fail() && out.bad() ); in streambuf_output()
596 ofstream out(file_name); in win32_file_format() local
597 CPPUNIT_ASSERT( out.good() ); in win32_file_format()
598 out << 'a'; in win32_file_format()
600 out << '\n'; in win32_file_format()
602 out << '\r'; in win32_file_format()
603 CPPUNIT_ASSERT( out.good() ); in win32_file_format()
643 result out(state_type&, in out() function in std::codecvt
747 ofstream out("big_file.txt"); in big_file() local
748 CPPUNIT_ASSERT( out ); in big_file()
769 out << setiosflags(ios_base::right) << setfill('*'); in big_file()
772 file_pos.push_back(make_pair(out.tellp(), index)); in big_file()
778 out << setw(1023) << index << '\n'; in big_file()
860 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::ate); in null_stream()
865 fstream nullStream(nullStreamName, ios_base::in | ios_base::out | ios_base::trunc); in null_stream()
893 fstream f( "test.txt", ios_base::in | ios_base::out | ios_base::trunc ); in null_buf()