HomeSort by relevance Sort by last modified time
    Searched defs:sb (Results 176 - 200 of 1988) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
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);
72 assert(sb.str() == "0x0" || sb.str() == "(nil)" ||
73 sb.str() == std::string(sizeof(void*)*2,'0'));
76 testbuf<char> sb; local
77 std::ostream os(&sb);
78 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");
  /external/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 ");
char_to_wide_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 ");
signed_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 ");
signed_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 ");
unsigned_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 ");
unsigned_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 ");
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.manip/
endl.pass.cpp 65 testbuf<char> sb; local
66 std::ostream os(&sb);
68 assert(sb.str() == "\n");
73 testbuf<wchar_t> sb; local
74 std::wostream os(&sb);
76 assert(sb.str() == L"\n");
ends.pass.cpp 56 testbuf<char> sb; local
57 std::ostream os(&sb);
59 assert(sb.str().size() == 1);
60 assert(sb.str().back() == 0);
64 testbuf<wchar_t> sb; local
65 std::wostream os(&sb);
67 assert(sb.str().size() == 1);
68 assert(sb.str().back() == 0);
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.rvalue/
CharT_pointer.pass.cpp 62 testbuf<char> sb; local
63 std::ostream(&sb) << "testing...";
64 assert(sb.str() == "testing...");
67 testbuf<wchar_t> sb; local
68 std::wostream(&sb) << L"123";
69 assert(sb.str() == L"123");
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/
put.pass.cpp 61 testbuf<wchar_t> sb; local
62 std::wostream os(&sb);
65 assert(sb.str() == L"a");
69 testbuf<char> sb; local
70 std::ostream os(&sb);
73 assert(sb.str() == "a");
write.pass.cpp 61 testbuf<wchar_t> sb; local
62 std::wostream os(&sb);
66 assert(sb.str() == s);
69 testbuf<char> sb; local
70 std::ostream os(&sb);
73 assert(sb.str() == s);

Completed in 891 milliseconds

1 2 3 4 5 6 78 91011>>