Searched refs:fb_02 (Results 1 - 19 of 19) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/sgetn/char/
H A D2-out.cc52 constraint_filebuf fb_02; local
53 fb_02.pubsetbuf(0, 0);
54 fb_02.open(name_02, ios_base::out | ios_base::trunc);
55 VERIFY( fb_02.unbuffered() );
56 VERIFY( !fb_02.read_position() );
57 strmsz_2 = fb_02.in_avail();
58 strmsz_2 = fb_02.sgetn(carray2, 10);
60 c2 = fb_02.sgetc();
62 strmsz_1 = fb_02.in_avail();
63 strmsz_2 = fb_02
[all...]
H A D1-out.cc52 constraint_filebuf fb_02; local
53 fb_02.open(name_02, ios_base::out | ios_base::trunc);
54 VERIFY( !fb_02.write_position() );
55 VERIFY( !fb_02.read_position() );
56 strmsz_2 = fb_02.in_avail();
57 strmsz_2 = fb_02.sgetn(carray2, 10);
59 c2 = fb_02.sgetc();
61 strmsz_1 = fb_02.in_avail();
62 strmsz_2 = fb_02.sgetn(carray2, strmsz_1 + 5);
65 c4 = fb_02
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/sgetc/char/
H A D2-out.cc47 constraint_filebuf fb_02; // out local
48 fb_02.pubsetbuf(0, 0);
49 fb_02.open(name_02, ios::out | ios::trunc);
50 VERIFY( fb_02.unbuffered() );
51 VERIFY( !fb_02.read_position() );
52 c1 = fb_02.sgetc();
54 c2 = fb_02.sgetc();
56 fb_02.sbumpc();
57 c1 = fb_02.sbumpc();
58 c2 = fb_02
[all...]
H A D1-out.cc49 constraint_filebuf fb_02; // out local
50 fb_02.open(name_02, ios::out | ios::trunc);
51 VERIFY( !fb_02.write_position() );
52 VERIFY( !fb_02.read_position() );
53 c1 = fb_02.sgetc();
55 c2 = fb_02.sgetc();
57 fb_02.sbumpc();
58 c1 = fb_02.sbumpc();
59 c2 = fb_02.sgetc();
61 VERIFY( !fb_02
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/sputn/char/
H A D2-out.cc51 constraint_filebuf fb_02; local
52 fb_02.pubsetbuf(0, 0);
53 fb_02.open(name_02, ios_base::out | ios_base::trunc);
54 VERIFY( fb_02.unbuffered() );
55 VERIFY( !fb_02.read_position() );
56 strmsz_1 = fb_02.sputn("racadabras", 10);
58 VERIFY( fb_02.unbuffered() );
59 VERIFY( !fb_02.read_position() );
H A D1-out.cc51 constraint_filebuf fb_02; local
52 fb_02.open(name_02, ios_base::out | ios_base::trunc);
53 VERIFY( !fb_02.write_position() );
54 VERIFY( !fb_02.read_position() );
55 strmsz_1 = fb_02.sputn("racadabras", 10);
57 VERIFY( fb_02.write_position() );
58 VERIFY( !fb_02.read_position() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/snextc/char/
H A D2-out.cc46 constraint_filebuf fb_02; local
47 fb_02.pubsetbuf(0, 0);
48 fb_02.open(name_02, ios_base::out | ios_base::trunc);
49 VERIFY( fb_02.unbuffered() );
50 c2 = fb_02.snextc();
52 c2 = fb_02.snextc();
54 VERIFY( fb_02.unbuffered() );
H A D1-out.cc48 constraint_filebuf fb_02; local
49 fb_02.open(name_02, ios_base::out | ios_base::trunc);
50 VERIFY( !fb_02.write_position() );
51 VERIFY( !fb_02.read_position() );
52 c2 = fb_02.snextc();
54 c2 = fb_02.snextc();
56 VERIFY( !fb_02.write_position() );
57 VERIFY( !fb_02.read_position() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/sputc/char/
H A D2-out.cc51 constraint_filebuf fb_02; local
52 fb_02.pubsetbuf(0, 0);
53 fb_02.open(name_02, ios_base::out | ios_base::trunc);
54 VERIFY( fb_02.unbuffered() );
55 VERIFY( !fb_02.read_position() );
56 c1 = fb_02.sputc('a');
58 c2 = fb_02.sputc('c');
61 c2 = fb_02.sputc(char(i));
62 VERIFY( fb_02.unbuffered() );
63 VERIFY( !fb_02
[all...]
H A D1-out.cc51 constraint_filebuf fb_02; local
52 fb_02.open(name_02, ios_base::out | ios_base::trunc);
53 VERIFY( !fb_02.write_position() );
54 VERIFY( !fb_02.read_position() );
55 c1 = fb_02.sputc('a');
57 c2 = fb_02.sputc('c');
60 c2 = fb_02.sputc(char(i));
61 VERIFY( fb_02.write_position() );
62 VERIFY( !fb_02.read_position() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/sbumpc/char/
H A D2-out.cc45 constraint_filebuf fb_02; local
46 fb_02.pubsetbuf(0, 0);
47 fb_02.open(name_02, ios_base::out | ios_base::trunc);
48 VERIFY( fb_02.unbuffered() );
49 VERIFY( !fb_02.read_position() );
50 int_type c2 = fb_02.sbumpc();
52 int_type c4 = fb_02.sbumpc();
54 VERIFY( fb_02.unbuffered() );
55 VERIFY( !fb_02.read_position() );
H A D1-out.cc45 constraint_filebuf fb_02; local
46 fb_02.open(name_02, ios_base::out | ios_base::trunc);
47 VERIFY( !fb_02.write_position() );
48 VERIFY( !fb_02.read_position() );
49 int_type c2 = fb_02.sbumpc();
51 int_type c4 = fb_02.sbumpc();
53 VERIFY( !fb_02.write_position() );
54 VERIFY( !fb_02.read_position() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/close/char/
H A D4.cc40 std::filebuf fb_01, fb_02; local
58 fb_02.open(name_02, std::ios_base::out);
59 VERIFY( fb_02.sputc('T') != traits_type::eof() );
60 VERIFY( fb_02.sputn(buffer, sizeof(buffer)) == sizeof(buffer) );
62 fb_02.close();
64 VERIFY( fb_02.sputc('T') == traits_type::eof() );
65 VERIFY( fb_02.sputn(buffer, sizeof(buffer)) == 0 );
H A D1.cc40 std::filebuf fb_02; // out local
45 VERIFY( !fb_02.is_open() );
54 fb_02.open(name_02, std::ios_base::in | std::ios_base::out
56 VERIFY( fb_02.is_open() );
67 f = fb_02.close();
69 VERIFY( !fb_02.is_open() );
H A D3.cc47 derived_filebuf fb_02; // out variable
54 fb_02.set_size(buffer_size);
71 fb_02.open(name_02, std::ios_base::out | std::ios_base::trunc);
77 fb_02.close();
80 VERIFY( !fb_02.is_open() );
H A D5.cc62 Close_filebuf fb_01, fb_02; local
88 fb_02.open(name_02, std::ios_base::out);
90 fb_02.close();
93 fb_02.sputc('T');
97 fb_02.sputn(buffer, sizeof(buffer));
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/is_open/char/
H A D1.cc40 std::filebuf fb_02; // out local
45 VERIFY( !fb_02.is_open() );
50 fb_02.open(name_02, std::ios_base::in | std::ios_base::out
54 VERIFY( fb_02.is_open() );
59 fb_02.close();
62 VERIFY( !fb_02.is_open() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/open/char/
H A D1.cc40 std::filebuf fb_02; // out local
45 VERIFY( !fb_02.is_open() );
54 std::filebuf* f = fb_02.open(name_02, std::ios_base::in | std::ios_base::out
57 VERIFY( fb_02.is_open() );
59 f = fb_02.open(name_03, std::ios_base::in | std::ios_base::out);
61 VERIFY( fb_02.is_open() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_filebuf/in_avail/char/
H A D1.cc49 derived_filebuf fb_02; // out variable
56 fb_02.set_size(buffer_size);
78 strmof_2 = fb_02.in_avail();
84 fb_02.open(name_02, std::ios_base::out | std::ios_base::trunc);
87 strmof_2 = fb_02.in_avail();

Completed in 207 milliseconds