HomeSort by relevance Sort by last modified time
    Searched full:static_assert (Results 476 - 500 of 1136) sorted by null

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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++/libcxx/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++/libcxx/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++/libcxx/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++/libcxx/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++/libcxx/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++/libcxx/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++/libcxx/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++/libcxx/test/utilities/meta/meta.trans/meta.trans.arr/
remove_all_extents.pass.cpp 21 static_assert((std::is_same<typename std::remove_all_extents<T>::type, U>::value), "");
23 static_assert((std::is_same<std::remove_all_extents_t<T>, U>::value), "");
remove_extent.pass.cpp 21 static_assert((std::is_same<typename std::remove_extent<T>::type, U>::value), "");
23 static_assert((std::is_same<std::remove_extent_t<T>, U>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.cv/
add_const.pass.cpp 19 static_assert((std::is_same<typename std::add_const<T>::type, const U>::value), "");
21 static_assert((std::is_same<std::add_const_t<T>, U>::value), "");
add_cv.pass.cpp 19 static_assert((std::is_same<typename std::add_cv<T>::type, const volatile U>::value), "");
21 static_assert((std::is_same<std::add_cv_t<T>, U>::value), "");
add_volatile.pass.cpp 19 static_assert((std::is_same<typename std::add_volatile<T>::type, volatile U>::value), "");
21 static_assert((std::is_same<std::add_volatile_t<T>, U>::value), "");

Completed in 119 milliseconds

<<11121314151617181920>>