• Home
  • Raw
  • Download

Lines Matching refs:in

152     ifstream in("/tmp");  in input()  local
153 if (in.good()) { in input()
155 getline(in, s); in input()
156 CPPUNIT_ASSERT( in.fail() ); in input()
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()
244 ifstream is("test_file.txt", ios_base::in | ios_base::binary); in tellg()
263 ifstream is("test_file.txt", ios_base::in | ios_base::binary); in tellg()
279 ifstream is("test_file.txt", ios_base::in | ios_base::binary); in tellg()
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()
538 ifstream in("test_file.txt", ios_base::binary); in streambuf_output() local
539 CPPUNIT_ASSERT( in ); in streambuf_output()
545 out << in.rdbuf(); in streambuf_output()
547 CPPUNIT_ASSERT( in ); in streambuf_output()
550 out << in.rdbuf(); in streambuf_output()
552 CPPUNIT_ASSERT( in ); in streambuf_output()
555 ostr << in.rdbuf(); in streambuf_output()
557 CPPUNIT_ASSERT( in ); in streambuf_output()
564 ifstream in("test_file.txt", ios_base::binary); in streambuf_output() local
565 CPPUNIT_ASSERT( in ); in streambuf_output()
571 out << in.rdbuf(); in streambuf_output()
573 CPPUNIT_ASSERT( in ); in streambuf_output()
578 out << in.rdbuf(); in streambuf_output()
580 CPPUNIT_ASSERT( in ); in streambuf_output()
583 ostr << in.rdbuf(); in streambuf_output()
585 CPPUNIT_ASSERT( in ); in streambuf_output()
606 ifstream in(file_name); in win32_file_format() local
607 CPPUNIT_ASSERT( in.good() ); in win32_file_format()
610 while (getline(in, line)) { in win32_file_format()
614 CPPUNIT_ASSERT( in.eof() ); in win32_file_format()
652 result in (state_type&, in in() function in std::codecvt
783 ifstream in("big_file.txt"); in big_file() local
784 CPPUNIT_ASSERT( in ); in big_file()
790 in.seekg((*pit).first); in big_file()
791 CPPUNIT_ASSERT( in ); in big_file()
792 in >> line; 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()