Searched defs:testbuf (Results 1 - 25 of 140) sorted by last modified time

123456

/external/libcxx/test/input.output/iostream.format/ext.manip/
H A Dget_money.pass.cpp20 struct testbuf struct in inherits:std::basic_streambuf
29 testbuf() {} function in struct:testbuf
30 testbuf(const string_type& str) function in struct:testbuf
42 testbuf<char> sb(" -$1,234,567.89");
50 testbuf<char> sb(" -USD 1,234,567.89");
58 testbuf<wchar_t> sb(L" -$1,234,567.89");
66 testbuf<wchar_t> sb(L" -USD 1,234,567.89");
H A Dget_time.pass.cpp20 struct testbuf struct in inherits:std::basic_streambuf
29 testbuf() {} function in struct:testbuf
30 testbuf(const string_type& str) function in struct:testbuf
42 testbuf<char> sb(" Sat Dec 31 23:55:59 2061");
58 testbuf<wchar_t> sb(L" Sat Dec 31 23:55:59 2061");
H A Dput_money.pass.cpp20 class testbuf class in inherits:std::basic_streambuf
26 testbuf() function in class:testbuf
54 testbuf<char> sb;
63 testbuf<char> sb;
72 testbuf<wchar_t> sb;
81 testbuf<wchar_t> sb;
H A Dput_time.pass.cpp20 class testbuf class in inherits:std::basic_streambuf
26 testbuf() function in class:testbuf
54 testbuf<char> sb;
69 testbuf<wchar_t> sb;
/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
H A Dmember_swap.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
24 testbuf() {} function in struct:testbuf
32 test_iostream(testbuf<CharT>* sb) : base(sb) {}
40 testbuf<char> sb1;
41 testbuf<char> sb2;
63 testbuf<wchar_t> sb1;
64 testbuf<wchar_t> sb2;
H A Dmove_assign.pass.cpp23 struct testbuf struct in inherits:std::basic_streambuf
26 testbuf() {} function in struct:testbuf
34 test_iostream(testbuf<CharT>* sb) : base(sb) {}
46 testbuf<char> sb1;
47 testbuf<char> sb2;
69 testbuf<wchar_t> sb1;
70 testbuf<wchar_t> sb2;
/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
H A Dmove.pass.cpp23 struct testbuf struct in inherits:std::basic_streambuf
26 testbuf() {} function in struct:testbuf
34 test_iostream(testbuf<CharT>* sb) : base(sb) {}
46 testbuf<char> sb;
62 testbuf<wchar_t> sb;
H A Dstreambuf.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
24 testbuf() {} function in struct:testbuf
30 testbuf<char> sb;
43 testbuf<wchar_t> sb;
/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream.assign/
H A Dmember_swap.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
24 testbuf() {} function in struct:testbuf
32 test_istream(testbuf<CharT>* sb) : base(sb) {}
40 testbuf<char> sb1;
41 testbuf<char> sb2;
63 testbuf<wchar_t> sb1;
64 testbuf<wchar_t> sb2;
H A Dmove_assign.pass.cpp23 struct testbuf struct in inherits:std::basic_streambuf
26 testbuf() {} function in struct:testbuf
34 test_istream(testbuf<CharT>* sb) : base(sb) {}
46 testbuf<char> sb1;
47 testbuf<char> sb2;
69 testbuf<wchar_t> sb1;
70 testbuf<wchar_t> sb2;
/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
H A Dmove.pass.cpp23 struct testbuf struct in inherits:std::basic_streambuf
26 testbuf() {} function in struct:testbuf
34 test_istream(testbuf<CharT>* sb) : base(sb) {}
46 testbuf<char> sb;
62 testbuf<wchar_t> sb;
H A Dstreambuf.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
24 testbuf() {} function in struct:testbuf
30 testbuf<char> sb;
43 testbuf<wchar_t> sb;
/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/
H A Dctor.pass.cpp23 struct testbuf struct in inherits:std::basic_streambuf
32 testbuf() {} function in struct:testbuf
33 testbuf(const string_type& str) function in struct:testbuf
56 std::istream is((testbuf<char>*)0);
64 std::wistream is((testbuf<wchar_t>*)0);
72 testbuf<char> sb(" 123");
82 testbuf<wchar_t> sb(L" 123");
92 testbuf<char> sb(" 123");
101 testbuf<wchar_t> sb(L" 123");
110 testbuf<cha
[all...]
/external/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream.formatted.arithmetic/
H A Dbool.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 1 ");
71 testbuf<wchar_t> sb(L" 1 ");
H A Ddouble.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" -123.5 ");
H A Dfloat.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" -123.5 ");
H A Dint.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" -1234567890123456 ");
H A Dlong.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" -123 ");
H A Dlong_double.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" -123.5 ");
H A Dlong_long.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" -123 ");
H A Dpointer.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 1 ");
71 testbuf<wchar_t> sb(L" 1 ");
80 testbuf<char> sb("12345678");
89 testbuf<wchar_t> sb(L"12345678");
H A Dshort.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" -1234567890 ");
H A Dunsigned_int.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" 123 ");
H A Dunsigned_long.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" 123 ");
H A Dunsigned_long_long.pass.cpp21 struct testbuf struct in inherits:std::basic_streambuf
30 testbuf() {} function in struct:testbuf
31 testbuf(const string_type& str) function in struct:testbuf
53 testbuf<char> sb("0");
62 testbuf<char> sb(" 123 ");
71 testbuf<wchar_t> sb(L" 123 ");

Completed in 114 milliseconds

123456