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

1 2 3 4 5 6 78 91011>>

  /external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
search_n.pass.cpp 54 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
55 assert(std::search_n(Iter(ib), Iter(ib+sb), 0, 0) == Iter(ib));
56 assert(std::search_n(Iter(ib), Iter(ib+sb), 1, 0) == Iter(ib+0));
57 assert(std::search_n(Iter(ib), Iter(ib+sb), 2, 0) == Iter(ib+0));
58 assert(std::search_n(Iter(ib), Iter(ib+sb), 3, 0) == Iter(ib+sb));
59 assert(std::search_n(Iter(ib), Iter(ib+sb), sb, 0) == Iter(ib+sb));
60 assert(std::search_n(Iter(ib), Iter(ib+sb), 0, 1) == Iter(ib))
    [all...]
  /external/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/
set_symmetric_difference.pass.cpp 34 const int sb = sizeof(ib)/sizeof(ib[0]); local
39 Iter2(ib), Iter2(ib+sb), OutIter(ic));
42 ce = std::set_symmetric_difference(Iter1(ib), Iter1(ib+sb),
set_symmetric_difference_comp.pass.cpp 36 const int sb = sizeof(ib)/sizeof(ib[0]); local
41 Iter2(ib), Iter2(ib+sb),
45 ce = std::set_symmetric_difference(Iter1(ib), Iter1(ib+sb),
  /external/libcxx/test/std/algorithms/alg.sorting/alg.set.operations/set.union/
set_union.pass.cpp 33 const int sb = sizeof(ib)/sizeof(ib[0]); local
38 Iter2(ib), Iter2(ib+sb), OutIter(ic));
41 ce = std::set_union(Iter1(ib), Iter1(ib+sb),
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),
  /external/libcxx/test/std/input.output/iostream.format/ext.manip/
put_money.pass.cpp 56 testbuf<char> sb; local
57 std::ostream os(&sb);
62 assert(sb.str() == "-$1,234,567.89");
65 testbuf<char> sb; local
66 std::ostream os(&sb);
71 assert(sb.str() == "-USD 1,234,567.89");
74 testbuf<wchar_t> sb; local
75 std::wostream os(&sb);
80 assert(sb.str() == L"-$1,234,567.89");
83 testbuf<wchar_t> sb; local
    [all...]
put_time.pass.cpp 56 testbuf<char> sb; local
57 std::ostream os(&sb);
69 assert(sb.str() == "Sat Dec 31 23:55:59 2061");
72 testbuf<wchar_t> sb; local
73 std::wostream os(&sb);
84 assert(sb.str() == L"Sat Dec 31 23:55:59 2061");
  /external/libcxx/test/std/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...");
  /external/libcxx/test/std/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");
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/std/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 ");

Completed in 289 milliseconds

1 2 3 4 5 6 78 91011>>