Searched refs:gcount (Results 1 - 25 of 45) sorted by relevance

12

/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A D15822.C7 static unsigned int gcount; variable
10 playahermosa() { ++gcount; }
11 playahermosa(const playahermosa &) { ++gcount; }
12 ~playahermosa() { --gcount; }
25 assert (gcount == 0);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/objects/char/
H A D4_xin.cc30 cout << "_M_gcount: "<< cin.gcount() << endl;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/objects/wchar_t/
H A D4_xin.cc30 wcout << L"_M_gcount: " << wcin.gcount() << endl;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/tellg/char/
H A D2.cc21 // DR 60 -- tellg does not effect calls to gcount
34 int count1 = ist.gcount();
36 int count2 = ist.gcount();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/tellg/wchar_t/
H A D2.cc19 // DR 60 -- tellg does not effect calls to gcount
32 int count1 = ist.gcount();
34 int count2 = ist.gcount();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/ignore/char/
H A D7220.cc42 if (istr.gcount() != 0)
47 if (istr.gcount() != 0)
53 if ((n=istr.gcount()) != 0)
H A D3.cc52 VERIFY( ifstrm.gcount() == 1 );
59 VERIFY( ifstrm.gcount() == 10 );
66 VERIFY( ifstrm.gcount() == 100 );
73 VERIFY( ifstrm.gcount() == 1000 );
80 VERIFY( ifstrm.gcount() == 10000 );
87 VERIFY( ifstrm.gcount() == 5389 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/seekg/char/
H A D2.cc21 // DR 60 -- seekg does not effect calls to gcount
35 int count1 = ist.gcount();
37 int count2 = ist.gcount();
40 count2 = ist.gcount();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/seekg/wchar_t/
H A D2.cc19 // DR 60 -- seekg does not effect calls to gcount
33 int count1 = ist.gcount();
35 int count2 = ist.gcount();
38 count2 = ist.gcount();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/getline/char/
H A D2.cc56 while(ifs.getline(tmp, it) || ifs.gcount())
58 br += ifs.gcount();
67 VERIFY(ifs.fail() && ifs.gcount() == 0);
78 VERIFY((ifs.gcount() == 0) || (std::strlen(tmp) == it - 1));
87 // -> delimiter was seen -> gcount() > strlen(__s)
88 VERIFY(ifs.gcount() == static_cast<std::streamsize>(std::strlen(tmp) + 1) );
H A D6.cc41 VERIFY( istr01.gcount() == 0 );
48 VERIFY( istr02.gcount() == 0 );
H A D1.cc61 VERIFY( is_04.gcount() == 0 );
65 VERIFY( is_04.gcount() == 1 );
73 VERIFY( is_04.gcount() == 10 );
81 VERIFY( is_04.gcount() == 4 );
89 VERIFY( is_04.gcount() == 64 );
100 VERIFY( is_04.gcount() == 106 );
108 VERIFY( is_04.gcount() == 0 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/getline/wchar_t/
H A D2.cc54 while(ifs.getline(tmp, it) || ifs.gcount())
56 br += ifs.gcount();
65 VERIFY( ifs.fail() && ifs.gcount() == 0 );
76 VERIFY( (ifs.gcount() == 0) || (std::wcslen(tmp) == it - 1) );
85 // -> delimiter was seen -> gcount() > wcslen(__s)
86 VERIFY( ifs.gcount() == static_cast<std::streamsize>(std::wcslen(tmp)
H A D6.cc41 VERIFY( istr01.gcount() == 0 );
48 VERIFY( istr02.gcount() == 0 );
H A D1.cc59 VERIFY( is_04.gcount() == 0 );
63 VERIFY( is_04.gcount() == 1 );
71 VERIFY( is_04.gcount() == 10 );
79 VERIFY( is_04.gcount() == 4 );
87 VERIFY( is_04.gcount() == 64 );
98 VERIFY( is_04.gcount() == 106 );
106 VERIFY( is_04.gcount() == 0 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/ignore/wchar_t/
H A D7220.cc40 if (istr.gcount() != 0)
45 if (istr.gcount() != 0)
51 if ((n=istr.gcount()) != 0)
H A D3.cc48 VERIFY( ifstrm.gcount() == 1 );
55 VERIFY( ifstrm.gcount() == 10 );
62 VERIFY( ifstrm.gcount() == 100 );
69 VERIFY( ifstrm.gcount() == 1000 );
76 VERIFY( ifstrm.gcount() == 10000 );
83 VERIFY( ifstrm.gcount() == 5389 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/get/char/
H A D3.cc41 VERIFY( istr01.gcount() == 0 );
48 VERIFY( istr02.gcount() == 0 );
H A D1.cc59 VERIFY( is_00.gcount() == 0 );
64 VERIFY( is_04.gcount() == 3 );
71 VERIFY( is_04.gcount() == 7 );
77 VERIFY( is_04.gcount() == 0 );
82 VERIFY( is_04.gcount() == 125 );
87 VERIFY( is_04.gcount() == 0 );
92 VERIFY( is_05.gcount() == 0 );
98 VERIFY( is_05.gcount() == 10 );
105 VERIFY( is_05.gcount() == 125 );
112 VERIFY( is_05.gcount()
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/get/wchar_t/
H A D3.cc39 VERIFY( istr01.gcount() == 0 );
46 VERIFY( istr02.gcount() == 0 );
H A D1.cc57 VERIFY( is_00.gcount() == 0 );
62 VERIFY( is_04.gcount() == 3 );
69 VERIFY( is_04.gcount() == 7 );
75 VERIFY( is_04.gcount() == 0 );
80 VERIFY( is_04.gcount() == 125 );
85 VERIFY( is_04.gcount() == 0 );
90 VERIFY( is_05.gcount() == 0 );
96 VERIFY( is_05.gcount() == 10 );
103 VERIFY( is_05.gcount() == 125 );
110 VERIFY( is_05.gcount()
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/putback/wchar_t/
H A D1.cc46 VERIFY( is_04.gcount() == 0 ); // DR 60
55 VERIFY( is_04.gcount() == 0 ); // DR 60
62 int count1 = is_00.gcount();
64 int count2 = is_00.gcount();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/putback/char/
H A D1.cc48 VERIFY( is_04.gcount() == 0 ); // DR 60
57 VERIFY( is_04.gcount() == 0 ); // DR 60
64 int count1 = is_00.gcount();
66 int count2 = is_00.gcount();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/peek/char/
H A D1.cc52 VERIFY( is_04.gcount() == 1 );
59 VERIFY( is_04.gcount() == 0 );
66 VERIFY( is_04.gcount() == 1 );
74 VERIFY( is_04.gcount() == 0 );
81 VERIFY( is_04.gcount() == 0 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/peek/wchar_t/
H A D1.cc50 VERIFY( is_04.gcount() == 1 );
57 VERIFY( is_04.gcount() == 0 );
64 VERIFY( is_04.gcount() == 1 );
72 VERIFY( is_04.gcount() == 0 );
79 VERIFY( is_04.gcount() == 0 );

Completed in 126 milliseconds

12