HomeSort by relevance Sort by last modified time
    Searched full:static_assert (Results 451 - 475 of 918) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
signal_h.pass.cpp 55 static_assert((std::is_same<decltype(signal(0, (func)0)), func>::value), "");
56 static_assert((std::is_same<decltype(raise(0)), int>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/alloc.errors/bad.alloc/
bad_alloc.pass.cpp 18 static_assert((std::is_base_of<std::exception, std::bad_alloc>::value),
20 static_assert(std::is_polymorphic<std::bad_alloc>::value,
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/alloc.errors/new.badlength/
bad_array_new_length.pass.cpp 18 static_assert((std::is_base_of<std::bad_alloc, std::bad_array_new_length>::value),
20 static_assert(std::is_polymorphic<std::bad_array_new_length>::value,
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.exception/bad.exception/
bad_exception.pass.cpp 18 static_assert((std::is_base_of<std::exception, std::bad_exception>::value),
20 static_assert(std::is_polymorphic<std::bad_exception>::value,
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.rtti/bad.cast/
bad_cast.pass.cpp 18 static_assert((std::is_base_of<std::exception, std::bad_cast>::value),
20 static_assert(std::is_polymorphic<std::bad_cast>::value,
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.rtti/bad.typeid/
bad_typeid.pass.cpp 18 static_assert((std::is_base_of<std::exception, std::bad_typeid>::value),
20 static_assert(std::is_polymorphic<std::bad_typeid>::value,
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.runtime/
csignal.pass.cpp 55 static_assert((std::is_same<decltype(std::signal(0, (func)0)), func>::value), "");
56 static_assert((std::is_same<decltype(std::raise(0)), int>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/c.locales/
clocale.pass.cpp 46 static_assert((std::is_same<__typeof__(std::setlocale(0, "")), char*>::value), "");
47 static_assert((std::is_same<__typeof__(std::localeconv()), std::lconv*>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/cmplx.over/
imag.pass.cpp 26 static_assert((std::is_same<decltype(std::imag(x)), double>::value), "");
34 static_assert((std::is_same<decltype(std::imag(x)), T>::value), "");
real.pass.cpp 26 static_assert((std::is_same<decltype(std::real(x)), double>::value), "");
34 static_assert((std::is_same<decltype(std::real(x)), T>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.special/
double_float_explicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
double_float_implicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
double_long_double_explicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
float_double_explicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
float_long_double_explicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_double_explicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_double_implicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_float_explicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_float_implicit.pass.cpp 33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.eng/rand.eng.mers/
result_type.pass.cpp 27 static_assert((std::is_same<
35 static_assert((std::is_same<
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/allocator.traits/allocator.traits.types/
pointer.pass.cpp 40 static_assert((std::is_same<std::allocator_traits<A<char> >::pointer, Ptr<char> >::value), "");
41 static_assert((std::is_same<std::allocator_traits<B<char> >::pointer, char*>::value), "");
propagate_on_container_copy_assignment.pass.cpp 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_copy_assignment, std::true_type>::value), "");
39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_copy_assignment, std::false_type>::value), "");
propagate_on_container_move_assignment.pass.cpp 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_move_assignment, std::true_type>::value), "");
39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_move_assignment, std::false_type>::value), "");
propagate_on_container_swap.pass.cpp 38 static_assert((std::is_same<std::allocator_traits<A<char> >::propagate_on_container_swap, std::true_type>::value), "");
39 static_assert((std::is_same<std::allocator_traits<B<char> >::propagate_on_container_swap, std::false_type>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.duration/time.duration.nonmember/
op_times_rep.pass.cpp 40 static_assert(ns2.count() == 15, "");
42 static_assert(ns3.count() == 18, "");

Completed in 63 milliseconds

<<11121314151617181920>>