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

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.types/
ptrdiff_t.pass.cpp 21 static_assert(sizeof(std::ptrdiff_t) == sizeof(void*),
23 static_assert(std::is_signed<std::ptrdiff_t>::value,
25 static_assert(std::is_integral<std::ptrdiff_t>::value,
size_t.pass.cpp 21 static_assert(sizeof(std::size_t) == sizeof(void*),
23 static_assert(std::is_unsigned<std::size_t>::value,
25 static_assert(std::is_integral<std::size_t>::value,
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/facet.ctype.special/
types.pass.cpp 34 static_assert((std::is_same<std::ctype<char>::char_type, char>::value), "");
35 static_assert((std::is_base_of<std::ctype_base, std::ctype<char> >::value), "");
36 static_assert((std::is_base_of<std::locale::facet, std::ctype<char> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/locale.ctype/
types.pass.cpp 34 static_assert((std::is_same<std::ctype<wchar_t>::char_type, wchar_t>::value), "");
35 static_assert((std::is_base_of<std::ctype_base, std::ctype<wchar_t> >::value), "");
36 static_assert((std::is_base_of<std::locale::facet, std::ctype<wchar_t> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.cons/
default_noexcept.pass.cpp 34 static_assert(std::is_nothrow_default_constructible<C>::value, "");
38 static_assert(std::is_nothrow_default_constructible<C>::value, "");
42 static_assert(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp 36 static_assert(std::is_nothrow_destructible<C>::value, "");
40 static_assert(std::is_nothrow_destructible<C>::value, "");
44 static_assert(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp 36 static_assert(std::is_nothrow_move_assignable<C>::value, "");
40 static_assert(!std::is_nothrow_move_assignable<C>::value, "");
44 static_assert(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp 34 static_assert(std::is_nothrow_move_constructible<C>::value, "");
38 static_assert(std::is_nothrow_move_constructible<C>::value, "");
42 static_assert(!std::is_nothrow_move_constructible<C>::value, "");
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.nonmembers/string.special/
swap_noexcept.pass.cpp 41 static_assert(noexcept(swap(c1, c2)), "");
46 static_assert(noexcept(swap(c1, c2)), "");
51 static_assert(!noexcept(swap(c1, c2)), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/allocator.adaptor/allocator.adaptor.types/
inner_allocator_type.pass.cpp 26 static_assert((std::is_same<
30 static_assert((std::is_same<
34 static_assert((std::is_same<
propagate_on_container_copy_assignment.pass.cpp 26 static_assert((std::is_same<
30 static_assert((std::is_same<
34 static_assert((std::is_same<
propagate_on_container_move_assignment.pass.cpp 26 static_assert((std::is_same<
30 static_assert((std::is_same<
34 static_assert((std::is_same<
propagate_on_container_swap.pass.cpp 26 static_assert((std::is_same<
30 static_assert((std::is_same<
34 static_assert((std::is_same<
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/allocator.traits/allocator.traits.types/
const_pointer.pass.cpp 52 static_assert((std::is_same<std::allocator_traits<A<char> >::const_pointer, Ptr<const char> >::value), "");
53 static_assert((std::is_same<std::allocator_traits<B<char> >::const_pointer, const char*>::value), "");
54 static_assert((std::is_same<std::allocator_traits<C<char> >::const_pointer, CPtr<const char> >::value), "");
const_void_pointer.pass.cpp 52 static_assert((std::is_same<std::allocator_traits<A<char> >::const_void_pointer, Ptr<const void> >::value), "");
53 static_assert((std::is_same<std::allocator_traits<B<char> >::const_void_pointer, const void*>::value), "");
54 static_assert((std::is_same<std::allocator_traits<C<char> >::const_void_pointer, CPtr<const void> >::value), "");
difference_type.pass.cpp 59 static_assert((std::is_same<std::allocator_traits<A<char> >::difference_type, short>::value), "");
60 static_assert((std::is_same<std::allocator_traits<B<char> >::difference_type, std::ptrdiff_t>::value), "");
61 static_assert((std::is_same<std::allocator_traits<C<char> >::difference_type, signed char>::value), "");
size_type.pass.cpp 58 static_assert((std::is_same<std::allocator_traits<A<char> >::size_type, unsigned short>::value), "");
59 static_assert((std::is_same<std::allocator_traits<B<char> >::size_type,
61 static_assert((std::is_same<std::allocator_traits<C<char> >::size_type,
void_pointer.pass.cpp 52 static_assert((std::is_same<std::allocator_traits<A<char> >::void_pointer, Ptr<void> >::value), "");
53 static_assert((std::is_same<std::allocator_traits<B<char> >::void_pointer, void*>::value), "");
54 static_assert((std::is_same<std::allocator_traits<C<char> >::void_pointer, CPtr<void> >::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.trans/meta.trans.other/
underlying_type.pass.cpp 22 static_assert((std::is_same<std::underlying_type<E>::type, int>::value),
24 static_assert((std::is_same<std::underlying_type<F>::type, unsigned>::value),
30 static_assert((std::is_same<std::underlying_type<G>::type, char>::value),
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p3.cpp 18 static_assert(123456789012345678901234567890123456789012345678901234567890_x3 == 60, "");
p4.cpp 18 static_assert(1e1000000_x3 == 9, "");
  /external/clang/test/CXX/lex/lex.pptoken/
p3-0x.cpp 15 static_assert(sizeof(xs) == 12, "did not revert all changes");
  /external/clang/test/CXX/special/class.inhctor/
p8.cpp 21 static_assert(a0.rval && !a1.rval && b0.rval && !b1.rval, "");
  /external/clang/test/SemaCXX/
cxx0x-initializer-references.cpp 31 static_assert(sizeof(arrayRef) == 3 * sizeof(int), "bad array size");
61 static_assert(sizeof(f({1})) == sizeof(one), "bad overload resolution");
66 static_assert(sizeof(g({1})) == sizeof(two), "bad overload resolution");
71 static_assert(sizeof(h({1, 2})) == sizeof(two), "bad overload resolution");
ms-interface.cpp 22 static_assert(true, "oops");
62 static_assert(!__is_interface_class(S), "oops");
63 static_assert(!__is_interface_class(C), "oops");
64 static_assert(__is_interface_class(I), "oops");

Completed in 171 milliseconds

<<11121314151617181920>>