/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.set.operations/set.union/ |
set_union_comp.pass.cpp | 35 const int sb = sizeof(ib)/sizeof(ib[0]); local 40 Iter2(ib), Iter2(ib+sb), OutIter(ic), std::less<int>()); 43 ce = std::set_union(Iter1(ib), Iter1(ib+sb),
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/ext.manip/ |
put_money.pass.cpp | 57 testbuf<char> sb; local 58 std::ostream os(&sb); 63 assert(sb.str() == "-$1,234,567.89"); 66 testbuf<char> sb; local 67 std::ostream os(&sb); 72 assert(sb.str() == "-USD 1,234,567.89"); 75 testbuf<wchar_t> sb; local 76 std::wostream os(&sb); 81 assert(sb.str() == L"-$1,234,567.89"); 84 testbuf<wchar_t> sb; local [all...] |
put_time.pass.cpp | 54 testbuf<char> sb; local 55 std::ostream os(&sb); 66 assert(sb.str() == "Sat Dec 31 23:55:59 2061"); 69 testbuf<wchar_t> sb; local 70 std::wostream os(&sb); 81 assert(sb.str() == L"Sat Dec 31 23:55:59 2061");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/ |
basic_ios.pass.cpp | 64 testbuf<char> sb; local 65 std::ostream os(&sb);
|
ios_base.pass.cpp | 55 testbuf<char> sb; local 56 std::ostream os(&sb);
|
ostream.pass.cpp | 64 testbuf<char> sb; local 65 std::ostream os(&sb); 67 assert(sb.str() == "testing...");
|
streambuf.pass.cpp | 15 // basic_ostream<charT,traits>& operator<<(basic_streambuf<charT,traits>* sb); 62 testbuf<char> sb; local 63 std::ostream os(&sb); 65 assert(sb.str() == ""); 67 assert(sb.str() == "testing...");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/ |
bool.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "1"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "true"); 84 testbuf<char> sb; local [all...] |
double.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "-10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "-10.5");
|
float.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "-10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "-10.5");
|
int.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "-10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fffffff6");
|
long.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "-10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fffffff6");
|
long_double.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "-10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "-10.5");
|
long_long.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "-10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fffffffffffffff6");
|
pointer.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 73 assert(sb.str() == "0x0" || sb.str() == "(nil)" || 74 sb.str() == std::string(sizeof(void*)*2,'0')); 76 assert(sb.str() == "0"); 80 testbuf<char> sb; local 81 std::ostream os(&sb); 82 const void* n = &sb;
|
short.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "-10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fff6");
|
unsigned_int.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fff6");
|
unsigned_long.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fffffff6");
|
unsigned_long_long.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fffffffffffffff6");
|
unsigned_short.pass.cpp | 62 testbuf<char> sb; local 63 std::ostream os(&sb); 66 assert(sb.str() == "0"); 69 testbuf<char> sb; local 70 std::ostream os(&sb); 73 assert(sb.str() == "10"); 76 testbuf<char> sb; local 77 std::ostream os(&sb); 81 assert(sb.str() == "fff6");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/ |
CharT.pass.cpp | 63 testbuf<wchar_t> sb; local 64 std::wostream os(&sb); 67 assert(sb.str() == L"a"); 70 testbuf<wchar_t> sb; local 71 std::wostream os(&sb); 75 assert(sb.str() == L" a"); 79 testbuf<wchar_t> sb; local 80 std::wostream os(&sb); 85 assert(sb.str() == L"a ");
|
CharT_pointer.pass.cpp | 63 testbuf<wchar_t> sb; local 64 std::wostream os(&sb); 67 assert(sb.str() == L"123"); 70 testbuf<wchar_t> sb; local 71 std::wostream os(&sb); 75 assert(sb.str() == L" 123"); 79 testbuf<wchar_t> sb; local 80 std::wostream os(&sb); 85 assert(sb.str() == L"123 ");
|
char.pass.cpp | 63 testbuf<char> sb; local 64 std::ostream os(&sb); 67 assert(sb.str() == "a"); 70 testbuf<char> sb; local 71 std::ostream os(&sb); 75 assert(sb.str() == " a"); 79 testbuf<char> sb; local 80 std::ostream os(&sb); 85 assert(sb.str() == "a ");
|
char_pointer.pass.cpp | 63 testbuf<char> sb; local 64 std::ostream os(&sb); 67 assert(sb.str() == "123"); 70 testbuf<char> sb; local 71 std::ostream os(&sb); 75 assert(sb.str() == " 123"); 79 testbuf<char> sb; local 80 std::ostream os(&sb); 85 assert(sb.str() == "123 ");
|
char_to_wide.pass.cpp | 63 testbuf<wchar_t> sb; local 64 std::wostream os(&sb); 67 assert(sb.str() == L"a"); 70 testbuf<wchar_t> sb; local 71 std::wostream os(&sb); 75 assert(sb.str() == L" a"); 79 testbuf<wchar_t> sb; local 80 std::wostream os(&sb); 85 assert(sb.str() == L"a ");
|