OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:static_assert
(Results
376 - 400
of
1130
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/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++/libcxx/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++/libcxx/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), "");
/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/SemaCXX/
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");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/
move_assign_noexcept.pass.cpp
38
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
42
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
46
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
50
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.special/
swap_noexcept.pass.cpp
42
static_assert
(noexcept(swap(c1, c2)), "");
47
static_assert
(noexcept(swap(c1, c2)), "");
52
static_assert
(noexcept(swap(c1, c2)), "");
57
static_assert
(!noexcept(swap(c1, c2)), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/
move_assign_noexcept.pass.cpp
38
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
42
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
46
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
50
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/
swap_noexcept.pass.cpp
42
static_assert
(noexcept(swap(c1, c2)), "");
47
static_assert
(noexcept(swap(c1, c2)), "");
52
static_assert
(noexcept(swap(c1, c2)), "");
57
static_assert
(!noexcept(swap(c1, c2)), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/multiset.cons/
move_assign_noexcept.pass.cpp
38
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
42
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
46
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
50
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/set.cons/
move_assign_noexcept.pass.cpp
38
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
42
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
46
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
50
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
digits.pass.cpp
21
static_assert
(std::numeric_limits<T>::digits == expected, "digits test 1");
22
static_assert
(std::numeric_limits<const T>::digits == expected, "digits test 2");
23
static_assert
(std::numeric_limits<volatile T>::digits == expected, "digits test 3");
24
static_assert
(std::numeric_limits<const volatile T>::digits == expected, "digits test 4");
has_denorm.pass.cpp
20
static_assert
(std::numeric_limits<T>::has_denorm == expected, "has_denorm test 1");
21
static_assert
(std::numeric_limits<const T>::has_denorm == expected, "has_denorm test 2");
22
static_assert
(std::numeric_limits<volatile T>::has_denorm == expected, "has_denorm test 3");
23
static_assert
(std::numeric_limits<const volatile T>::has_denorm == expected, "has_denorm test 4");
max_digits10.pass.cpp
21
static_assert
(std::numeric_limits<T>::max_digits10 == expected, "max_digits10 test 1");
22
static_assert
(std::numeric_limits<const T>::max_digits10 == expected, "max_digits10 test 2");
23
static_assert
(std::numeric_limits<volatile T>::max_digits10 == expected, "max_digits10 test 3");
24
static_assert
(std::numeric_limits<const volatile T>::max_digits10 == expected, "max_digits10 test 4");
round_style.pass.cpp
20
static_assert
(std::numeric_limits<T>::round_style == expected, "round_style test 1");
21
static_assert
(std::numeric_limits<const T>::round_style == expected, "round_style test 2");
22
static_assert
(std::numeric_limits<volatile T>::round_style == expected, "round_style test 3");
23
static_assert
(std::numeric_limits<const volatile T>::round_style == expected, "round_style test 4");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.types/
max_align_t.pass.cpp
20
static_assert
(std::is_pod<std::max_align_t>::value,
22
static_assert
((std::alignment_of<std::max_align_t>::value >=
26
static_assert
(std::alignment_of<std::max_align_t>::value >=
30
static_assert
(std::alignment_of<std::max_align_t>::value >=
Completed in 406 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>