HomeSort by relevance Sort by last modified time
    Searched refs:std (Results 276 - 300 of 15480) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.function.objects/depr.base/
unary_function.pass.cpp 24 static_assert((std::is_same<std::unary_function<unsigned, char>::argument_type, unsigned>::value), "");
25 static_assert((std::is_same<std::unary_function<unsigned, char>::result_type, char>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.ios.members/
streamoff.pass.cpp 23 static_assert((std::is_integral<std::ios_base::streamoff>::value), "");
24 static_assert((std::is_signed<std::ios_base::streamoff>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcat/syserr.errcat.overview/
error_category.pass.cpp 18 std::error_category* p = 0;
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/
equivalent_error_code_int.pass.cpp 21 const std::error_category& e_cat = std::generic_category();
22 assert(e_cat.equivalent(std::error_code(5, e_cat), 5));
23 assert(!e_cat.equivalent(std::error_code(5, e_cat), 6));
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.nonmembers/
lt.pass.cpp 23 const std::error_code ec1(6, std::generic_category());
24 const std::error_code ec2(7, std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
bool.pass.cpp 23 const std::error_code ec(6, std::generic_category());
27 const std::error_code ec(0, std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.nonmembers/
lt.pass.cpp 23 const std::error_condition ec1(6, std::generic_category());
24 const std::error_condition ec2(7, std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/
bool.pass.cpp 23 const std::error_condition ec(6, std::generic_category());
27 const std::error_condition ec(0, std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/fpos/fpos.operations/
offset.pass.cpp 21 typedef std::fpos<std::mbstate_t> P;
22 P p(std::streamoff(7));
23 std::streamoff offset(p);
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/stream.types/
streamoff.pass.cpp 19 static_assert(std::is_integral<std::streamoff>::value, "");
20 static_assert(std::is_signed<std::streamoff>::value, "");
streamsize.pass.cpp 19 static_assert(std::is_integral<std::streamsize>::value, "");
20 static_assert(std::is_signed<std::streamsize>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/stream.buffers/streambuf/streambuf.cons/
default.fail.cpp 21 std::basic_streambuf<char> sb;
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
default.pass.cpp 23 std::istreambuf_iterator<char> i;
24 assert(i == std::istreambuf_iterator<char>());
27 std::istreambuf_iterator<wchar_t> i;
28 assert(i == std::istreambuf_iterator<wchar_t>());
streambuf.pass.cpp 23 std::istreambuf_iterator<char> i(nullptr);
24 assert(i == std::istreambuf_iterator<char>());
27 std::istringstream inf;
28 std::istreambuf_iterator<char> i(inf.rdbuf());
29 assert(i == std::istreambuf_iterator<char>());
32 std::istringstream inf("a");
33 std::istreambuf_iterator<char> i(inf.rdbuf());
34 assert(i != std::istreambuf_iterator<char>());
37 std::istreambuf_iterator<wchar_t> i(nullptr);
38 assert(i == std::istreambuf_iterator<wchar_t>())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.exception/exception.terminate/set.terminate/
get_terminate.pass.cpp 21 std::set_terminate(f1);
22 assert(std::get_terminate() == f1);
23 std::set_terminate(f2);
24 assert(std::get_terminate() == f2);
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/locale.codecvt/
codecvt_base.pass.cpp 23 assert(std::codecvt_base::ok == 0);
24 assert(std::codecvt_base::partial == 1);
25 assert(std::codecvt_base::error == 2);
26 assert(std::codecvt_base::noconv == 3);
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/locale.ctype/
types.pass.cpp 27 std::locale l = std::locale::classic();
29 assert(std::has_facet<std::ctype<wchar_t> >(l));
30 const std::ctype<wchar_t>& f = std::use_facet<std::ctype<wchar_t> >(l);
32 (void)std::ctype<wchar_t>::id;
34 static_assert((std::is_same<std::ctype<wchar_t>::char_type, wchar_t>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.numeric/locale.nm.put/
types.pass.cpp 26 static_assert((std::is_base_of<std::locale::facet, std::num_put<char> >::value), "");
27 static_assert((std::is_base_of<std::locale::facet, std::num_put<wchar_t> >::value), "");
28 static_assert((std::is_same<std::num_put<char>::char_type, char>::value), "");
29 static_assert((std::is_same<std::num_put<wchar_t>::char_type, wchar_t>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.numeric/locale.num.get/
types.pass.cpp 26 static_assert((std::is_base_of<std::locale::facet, std::num_get<char> >::value), "");
27 static_assert((std::is_base_of<std::locale::facet, std::num_get<wchar_t> >::value), "");
28 static_assert((std::is_same<std::num_get<char>::char_type, char>::value), "");
29 static_assert((std::is_same<std::num_get<wchar_t>::char_type, wchar_t>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.time/locale.time.put/
types.pass.cpp 26 static_assert((std::is_base_of<std::locale::facet, std::time_put<char> >::value), "");
27 static_assert((std::is_base_of<std::locale::facet, std::time_put<wchar_t> >::value), "");
28 static_assert((std::is_same<std::time_put<char>::char_type, char>::value), "");
29 static_assert((std::is_same<std::time_put<wchar_t>::char_type, wchar_t>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/numarray/template.valarray/
types.pass.cpp 24 static_assert((std::is_same<std::valarray<int>::value_type, int>::value), "");
25 static_assert((std::is_same<std::valarray<double>::value_type, double>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.regex/
types.pass.cpp 26 static_assert((std::is_same<std::basic_regex<char>::value_type, char>::value), "");
27 static_assert((std::is_same<std::basic_regex<char>::flag_type,
28 std::regex_constants::syntax_option_type>::value), "");
29 static_assert((std::is_same<std::basic_regex<char>::locale_type, std::locale>::value), "");
31 static_assert((std::is_same<std::basic_regex<wchar_t>::value_type, wchar_t>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/re/re.traits/
types.pass.cpp 26 static_assert((std::is_same<std::regex_traits<char>::char_type, char>::value), "");
27 static_assert((std::is_same<std::regex_traits<char>::string_type, std::string>::value), "");
28 static_assert((std::is_same<std::regex_traits<char>::locale_type, std::locale>::value), "");
29 static_assert((std::is_same<std::regex_traits<wchar_t>::char_type, wchar_t>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
compare.pass.cpp 21 assert(std::char_traits<char>::compare("", "", 0) == 0);
23 assert(std::char_traits<char>::compare("1", "1", 1) == 0);
24 assert(std::char_traits<char>::compare("1", "2", 1) < 0);
25 assert(std::char_traits<char>::compare("2", "1", 1) > 0);
27 assert(std::char_traits<char>::compare("12", "12", 2) == 0);
28 assert(std::char_traits<char>::compare("12", "13", 2) < 0);
29 assert(std::char_traits<char>::compare("12", "22", 2) < 0);
30 assert(std::char_traits<char>::compare("13", "12", 2) > 0);
31 assert(std::char_traits<char>::compare("22", "12", 2) > 0);
33 assert(std::char_traits<char>::compare("123", "123", 3) == 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/string.classes/
typedefs.pass.cpp 24 typedef std::string test1;
25 typedef std::wstring test2;
27 typedef std::u16string test3;
28 typedef std::u32string test4;

Completed in 1249 milliseconds

<<11121314151617181920>>