Searched refs:eof (Results 1 - 25 of 249) sorted by relevance

12345678910

/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/close/char/
H A D4.cc45 VERIFY( fb_01.sgetc() != traits_type::eof() );
46 VERIFY( fb_01.sbumpc() != traits_type::eof() );
47 VERIFY( fb_01.snextc() != traits_type::eof() );
52 VERIFY( fb_01.sgetc() == traits_type::eof() );
53 VERIFY( fb_01.sbumpc() == traits_type::eof() );
54 VERIFY( fb_01.snextc() == traits_type::eof() );
59 VERIFY( fb_02.sputc('T') != traits_type::eof() );
64 VERIFY( fb_02.sputc('T') == traits_type::eof() );
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dwrite_back.f6 integer at,eof variable in program:test
/haiku-buildtools/legacy/gcc/libio/
H A Diogetline.c51 _IO_getline_info (fp, buf, n, delim, extract_delim, eof)
57 int *eof;
60 if (eof) *eof = 0;
69 if (eof) *eof = c;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_other/char/
H A D9424-in.cc42 int_type eof = traits_type::eof(); local
46 if (traits_type::eq_int_type(c, eof))
54 return eof;
75 return traits_type::eof();
82 return traits_type::eof();
H A D9318-in.cc36 virtual int_type overflow(int_type c = traits_type::eof())
38 if (!traits_type::eq_int_type(c, traits_type::eof()))
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_other/wchar_t/
H A D9424-in.cc41 int_type eof = traits_type::eof(); local
45 if (traits_type::eq_int_type(c, eof))
53 return eof;
74 return traits_type::eof();
81 return traits_type::eof();
H A D9318-in.cc34 virtual int_type overflow(int_type c = traits_type::eof())
36 if (!traits_type::eq_int_type(c, traits_type::eof()))
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/char/
H A D9424-out.cc42 int_type eof = traits_type::eof(); local
46 if (traits_type::eq_int_type(c, eof))
54 return eof;
75 return traits_type::eof();
82 return traits_type::eof();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_other/wchar_t/
H A D9424-out.cc42 int_type eof = traits_type::eof(); local
46 if (traits_type::eq_int_type(c, eof))
54 return eof;
75 return traits_type::eof();
82 return traits_type::eof();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/underflow/
H A D10096.cc44 while ((c1 = fb1.sbumpc()) != filebuf::traits_type::eof())
49 VERIFY( fb.sgetc() == MyTraits::eof() );
57 VERIFY( c2 != MyTraits::eof() );
61 VERIFY( fb.sgetc() == MyTraits::eof() );
64 VERIFY( fb.sgetc() == MyTraits::eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_stringbuf/pbackfail/char/
H A D1.cc50 VERIFY( c == traits_type::eof() );
64 const int_type eof = traits_type::eof(); local
65 c = sbuf.pub_pbackfail(eof);
66 VERIFY( c == traits_type::not_eof(eof) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_stringbuf/pbackfail/wchar_t/
H A D1.cc50 VERIFY( c == traits_type::eof() );
64 const int_type eof = traits_type::eof(); local
65 c = sbuf.pub_pbackfail(eof);
66 VERIFY( c == traits_type::not_eof(eof) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/imbue/char/
H A D14975-1.cc32 overflow(int_type c = traits_type::eof())
34 return traits_type::eq_int_type(c, traits_type::eof()) ?
35 traits_type::eof() : std::filebuf::overflow(c);
/haiku-buildtools/binutils/gas/testsuite/gas/
H A Dtemplate57 eof { break }
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/
H A Dtemplate57 eof { break }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/overflow/char/
H A D2-unbuf.cc32 int_type pub_overflow(int_type c = traits_type::eof())
36 // According to 27.5.2.4.5 filebuf::overflow() returns not_eof(eof()).
47 VERIFY( fb.pub_overflow() == traits_type::not_eof(traits_type::eof()) );
H A D2.cc32 int_type pub_overflow(int_type c = traits_type::eof())
36 // According to 27.5.2.4.5 filebuf::overflow() returns not_eof(eof()).
46 VERIFY( fb.pub_overflow() == traits_type::not_eof(traits_type::eof()) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/overflow/wchar_t/
H A D11305-2.cc40 VERIFY( n1 != wfilebuf::traits_type::eof() );
41 VERIFY( n2 != wfilebuf::traits_type::eof() );
H A D11305-4.cc39 VERIFY( n1 != wfilebuf::traits_type::eof() );
40 VERIFY( n2 != wfilebuf::traits_type::eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/pbackfail/char/
H A D9761.cc48 VERIFY( r1 != filebuf::traits_type::eof() );
49 VERIFY( r2 == filebuf::traits_type::eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/snextc/char/
H A D2-out.cc42 // calls sbumpc and if sbumpc != eof, return sgetc
51 VERIFY( c2 == traits_type::eof() );
53 VERIFY( c2 == traits_type::eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/char/
H A Ddr696.cc38 VERIFY( !iss1.fail() && iss1.eof() );
46 VERIFY( iss2.fail() && iss2.eof() );
54 VERIFY( !iss3.fail() && iss3.eof() );
62 VERIFY( iss4.fail() && iss4.eof() );
70 VERIFY( !iss5.fail() && iss5.eof() );
78 VERIFY( iss6.fail() && iss6.eof() );
86 VERIFY( !iss7.fail() && iss7.eof() );
94 VERIFY( iss8.fail() && iss8.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/
H A Ddr696.cc38 VERIFY( !iss1.fail() && iss1.eof() );
46 VERIFY( iss2.fail() && iss2.eof() );
54 VERIFY( !iss3.fail() && iss3.eof() );
62 VERIFY( iss4.fail() && iss4.eof() );
70 VERIFY( !iss5.fail() && iss5.eof() );
78 VERIFY( iss6.fail() && iss6.eof() );
86 VERIFY( !iss7.fail() && iss7.eof() );
94 VERIFY( iss8.fail() && iss8.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/getline/char/
H A D3.cc46 VERIFY( !istr.eof() ); // extracted up to but not eof
52 VERIFY( istr.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/get/char/
H A D3.cc38 VERIFY( istr01.eof() );
45 VERIFY( istr02.eof() );

Completed in 278 milliseconds

12345678910