Searched refs:iss (Results 1 - 25 of 173) sorted by relevance

1234567

/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/seekg/char/
H A D26211.cc32 istringstream iss("Duos for Doris");
35 const pos_type p0 = iss.tellg();
38 iss >> oss.rdbuf();
39 VERIFY( iss.rdstate() == iss.eofbit );
41 iss.seekg(0, ios_base::beg);
42 VERIFY( iss.good() );
44 iss.seekg(0, ios_base::beg);
45 VERIFY( !iss.fail() );
46 VERIFY( iss
[all...]
H A D8348-2.cc36 istringstream iss(num1);
37 iss.tellg();
39 iss >> asNum;
40 VERIFY( test = iss.eof() );
41 VERIFY( test = !iss.fail() );
42 iss.seekg(0, ios_base::beg);
43 VERIFY( test = !iss.fail() );
H A D8348-1.cc36 istringstream iss(num1);
37 istream::pos_type pos1 = iss.tellg();
39 iss >> asNum;
40 VERIFY( test = iss.eof() );
41 VERIFY( test = !iss.fail() );
42 iss.seekg(pos1);
43 VERIFY( test = !iss.fail() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/seekg/wchar_t/
H A D26211.cc32 wistringstream iss(L"Duos for Doris");
35 const pos_type p0 = iss.tellg();
38 iss >> oss.rdbuf();
39 VERIFY( iss.rdstate() == iss.eofbit );
41 iss.seekg(0, ios_base::beg);
42 VERIFY( iss.good() );
44 iss.seekg(0, ios_base::beg);
45 VERIFY( !iss.fail() );
46 VERIFY( iss
[all...]
H A D8348-2.cc34 wistringstream iss(num1);
35 iss.tellg();
37 iss >> asNum;
38 VERIFY( test = iss.eof() );
39 VERIFY( test = !iss.fail() );
40 iss.seekg(0, ios_base::beg);
41 VERIFY( test = !iss.fail() );
H A D8348-1.cc34 wistringstream iss(num1);
35 wistream::pos_type pos1 = iss.tellg();
37 iss >> asNum;
38 VERIFY( test = iss.eof() );
39 VERIFY( test = !iss.fail() );
40 iss.seekg(pos1);
41 VERIFY( test = !iss.fail() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/tellg/char/
H A D26211.cc32 istringstream iss("Duos for Doris");
35 VERIFY( iss.tellg() == pos_type(0) );
37 iss >> oss.rdbuf();
38 VERIFY( iss.rdstate() == iss.eofbit );
39 VERIFY( iss.tellg() == pos_type(-1) );
41 iss.clear();
42 VERIFY( iss.tellg() == pos_type(14) );
H A D8348.cc36 istringstream iss(num1);
37 iss.tellg();
39 iss >> asNum;
40 VERIFY( test = iss.eof() );
41 VERIFY( test = !iss.fail() );
42 iss.clear();
43 iss.tellg();
44 VERIFY( test = !iss.fail() );
49 istringstream iss(num1);
50 iss
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/tellg/wchar_t/
H A D26211.cc32 wistringstream iss(L"Duos for Doris");
35 VERIFY( iss.tellg() == pos_type(0) );
37 iss >> oss.rdbuf();
38 VERIFY( iss.rdstate() == iss.eofbit );
39 VERIFY( iss.tellg() == pos_type(-1) );
41 iss.clear();
42 VERIFY( iss.tellg() == pos_type(14) );
H A D8348.cc34 wistringstream iss(num1);
35 iss.tellg();
37 iss >> asNum;
38 VERIFY( test = iss.eof() );
39 VERIFY( test = !iss.fail() );
40 iss.clear();
41 iss.tellg();
42 VERIFY( test = !iss.fail() );
47 wistringstream iss(num1);
48 iss
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_other/char/
H A D26181.cc30 istringstream iss("Territoires de l'Oubli");
33 VERIFY( iss.tellg() == pos_type(0) );
35 iss >> oss.rdbuf();
36 VERIFY( iss.rdstate() == iss.eofbit );
38 iss.clear();
39 VERIFY( iss.tellg() == pos_type(22) );
41 iss.get();
42 VERIFY( iss.tellg() == pos_type(-1) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_istream/extractors_other/wchar_t/
H A D26181.cc30 wistringstream iss(L"Territoires de l'Oubli");
33 VERIFY( iss.tellg() == pos_type(0) );
35 iss >> oss.rdbuf();
36 VERIFY( iss.rdstate() == iss.eofbit );
38 iss.clear();
39 VERIFY( iss.tellg() == pos_type(22) );
41 iss.get();
42 VERIFY( iss.tellg() == pos_type(-1) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_get/get/char/
H A D2.cc51 istringstream iss; local
52 iss.imbue(loc_c);
53 const num_get<char>& ng = use_facet<num_get<char> >(iss.getloc());
60 iss.str("true ");
61 iss.clear();
62 iss.setf(ios_base::boolalpha);
64 ng.get(iss.rdbuf(), 0, iss, err, b0);
68 iss.str("false ");
69 iss
[all...]
H A D1.cc55 istringstream iss; local
56 iss.imbue(loc_de);
57 const num_get<char>& ng = use_facet<num_get<char> >(iss.getloc());
63 iss.str("1");
64 iterator_type os_it00 = iss.rdbuf();
65 ng.get(os_it00, 0, iss, err, b1);
69 iss.str("0");
71 ng.get(iss.rdbuf(), 0, iss, err, b0);
76 iss
[all...]
H A D5.cc37 istringstream iss; local
41 iss.imbue(loc_de);
43 const num_get<char>& ng = use_facet<num_get<char> >(iss.getloc());
47 iss.setf(ios::hex, ios::basefield);
48 iss.str("0xbf.fff.74c ");
50 ng.get(iss.rdbuf(), 0, iss, err, ul);
54 iss.str("0Xf.fff ");
56 ng.get(iss.rdbuf(), 0, iss, er
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_get/get/wchar_t/
H A D2.cc51 wistringstream iss; local
52 iss.imbue(loc_c);
53 const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc());
60 iss.str(L"true ");
61 iss.clear();
62 iss.setf(ios_base::boolalpha);
64 ng.get(iss.rdbuf(), 0, iss, err, b0);
68 iss.str(L"false ");
69 iss
[all...]
H A D1.cc55 wistringstream iss; local
56 iss.imbue(loc_de);
57 const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc());
63 iss.str(L"1");
64 iterator_type os_it00 = iss.rdbuf();
65 ng.get(os_it00, 0, iss, err, b1);
69 iss.str(L"0");
71 ng.get(iss.rdbuf(), 0, iss, err, b0);
76 iss
[all...]
H A D5.cc37 wistringstream iss; local
41 iss.imbue(loc_de);
43 const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc());
47 iss.setf(ios::hex, ios::basefield);
48 iss.str(L"0xbf.fff.74c ");
50 ng.get(iss.rdbuf(), 0, iss, err, ul);
54 iss.str(L"0Xf.fff ");
56 ng.get(iss.rdbuf(), 0, iss, er
[all...]
H A D7.cc34 wistringstream iss; local
35 const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc());
40 iss.str(L"+e3");
41 end = ng.get(iss.rdbuf(), 0, iss, err, d);
45 iss.str(L".e+1");
46 iss.clear();
48 end = ng.get(iss.rdbuf(), 0, iss, err, d);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/manipulators/extended/get_money/char/
H A D1.cc33 std::istringstream iss; local
34 iss.imbue(loc_de);
36 iss.str("7200000000,00 ");
39 iss >> std::get_money(str);
42 VERIFY( iss.eof() );
H A D51288.cc32 std::istringstream iss; local
33 iss.imbue(loc_us);
35 iss.str(" $1.23");
38 iss >> std::get_money(str);
41 VERIFY( iss.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/manipulators/extended/get_money/wchar_t/
H A D51288.cc32 std::wistringstream iss; local
33 iss.imbue(loc_us);
35 iss.str(L" $1.23");
38 iss >> std::get_money(str);
41 VERIFY( iss.eof() );
H A D1.cc33 std::wistringstream iss; local
34 iss.imbue(loc_de);
36 iss.str(L"7200000000,00 ");
39 iss >> get_money(str);
42 VERIFY( iss.eof() );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/money_get/get/char/
H A D10.cc38 istringstream iss; local
39 iss.imbue(loc_us);
41 const money_get<char>& mon_get = use_facet<money_get<char> >(iss.getloc());
43 iss.str("-$0 ");
44 iterator_type is_it(iss);
47 mon_get.get(is_it, end, false, iss, err, extracted_amount);
51 iss.str("-$ ");
52 iterator_type is_it_2(iss);
55 mon_get.get(is_it_2, end, false, iss, err, extracted_amount);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/money_get/get/wchar_t/
H A D10.cc38 wistringstream iss; local
39 iss.imbue(loc_us);
41 const money_get<wchar_t>& mon_get = use_facet<money_get<wchar_t> >(iss.getloc());
43 iss.str(L"-$0 ");
44 iterator_type is_it(iss);
47 mon_get.get(is_it, end, false, iss, err, extracted_amount);
51 iss.str(L"-$ ");
52 iterator_type is_it_2(iss);
55 mon_get.get(is_it_2, end, false, iss, err, extracted_amount);

Completed in 195 milliseconds

1234567