OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:static_assert
(Results
326 - 350
of
1130
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.hires/
consistency.pass.cpp
29
static_assert
((std::is_same<C::rep, C::duration::rep>::value), "");
30
static_assert
((std::is_same<C::period, C::duration::period>::value), "");
31
static_assert
((std::is_same<C::duration, C::time_point::duration>::value), "");
32
static_assert
(C::is_steady || !C::is_steady, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.steady/
consistency.pass.cpp
29
static_assert
((std::is_same<C::rep, C::duration::rep>::value), "");
30
static_assert
((std::is_same<C::period, C::duration::period>::value), "");
31
static_assert
((std::is_same<C::duration, C::time_point::duration>::value), "");
32
static_assert
(C::is_steady, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.traits/
uses_allocator.pass.cpp
26
static_assert
((std::is_base_of<std::true_type,
31
static_assert
((std::is_base_of<std::true_type,
36
static_assert
((std::is_base_of<std::true_type,
41
static_assert
((std::is_base_of<std::true_type,
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
tuple_element.pass.cpp
22
static_assert
((std::is_same<std::tuple_element<0, P1>::type, int>::value), "");
23
static_assert
((std::is_same<std::tuple_element<1, P1>::type, short>::value), "");
27
static_assert
((std::is_same<std::tuple_element<0, P1>::type, int*>::value), "");
28
static_assert
((std::is_same<std::tuple_element<1, P1>::type, char>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.overview/
future_status.pass.cpp
23
static_assert
(static_cast<int>(std::future_status::ready) == 0, "");
24
static_assert
(static_cast<int>(std::future_status::timeout) == 1, "");
25
static_assert
(static_cast<int>(std::future_status::deferred) == 2, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
uses_allocator.pass.cpp
23
static_assert
((std::uses_allocator<std::promise<int>, test_allocator<int> >::value), "");
24
static_assert
((std::uses_allocator<std::promise<int&>, test_allocator<int> >::value), "");
25
static_assert
((std::uses_allocator<std::promise<void>, test_allocator<void> >::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.require/
binary_function.pass.cpp
20
static_assert
((std::is_same<bf::first_argument_type, int>::value), "");
21
static_assert
((std::is_same<bf::second_argument_type, short>::value), "");
22
static_assert
((std::is_same<bf::result_type, bool>::value), "");
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p5.cpp
53
static_assert
(!noexcept(tl1()), "lambda can throw");
54
static_assert
(!noexcept(tl2()), "lambda can throw");
59
static_assert
(noexcept(ntl1()), "lambda cannot throw");
60
static_assert
(noexcept(ntl2()), "lambda cannot throw");
61
static_assert
(noexcept(ntl3()), "lambda cannot throw");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
default_noexcept.pass.cpp
48
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
53
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
58
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
62
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
67
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
50
static_assert
(std::is_nothrow_destructible<C>::value, "");
55
static_assert
(std::is_nothrow_destructible<C>::value, "");
59
static_assert
(!std::is_nothrow_destructible<C>::value, "");
64
static_assert
(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp
47
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
52
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
57
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
61
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
66
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp
44
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
49
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
54
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
58
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
63
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/
swap_noexcept.pass.cpp
47
static_assert
(noexcept(swap(c1, c2)), "");
53
static_assert
(noexcept(swap(c1, c2)), "");
59
static_assert
(noexcept(swap(c1, c2)), "");
64
static_assert
(!noexcept(swap(c1, c2)), "");
70
static_assert
(!noexcept(swap(c1, c2)), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.cnstr/
default_noexcept.pass.cpp
48
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
53
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
58
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
62
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
67
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
50
static_assert
(std::is_nothrow_destructible<C>::value, "");
55
static_assert
(std::is_nothrow_destructible<C>::value, "");
59
static_assert
(!std::is_nothrow_destructible<C>::value, "");
64
static_assert
(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp
47
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
52
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
57
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
61
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
66
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp
44
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
49
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
54
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
58
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
63
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/
swap_noexcept.pass.cpp
47
static_assert
(noexcept(swap(c1, c2)), "");
53
static_assert
(noexcept(swap(c1, c2)), "");
59
static_assert
(noexcept(swap(c1, c2)), "");
64
static_assert
(!noexcept(swap(c1, c2)), "");
70
static_assert
(!noexcept(swap(c1, c2)), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/
default_noexcept.pass.cpp
48
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
53
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
58
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
62
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
67
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
50
static_assert
(std::is_nothrow_destructible<C>::value, "");
55
static_assert
(std::is_nothrow_destructible<C>::value, "");
59
static_assert
(!std::is_nothrow_destructible<C>::value, "");
64
static_assert
(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp
47
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
52
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
57
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
61
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
66
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp
44
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
49
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
54
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
58
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
63
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
swap_noexcept.pass.cpp
47
static_assert
(noexcept(swap(c1, c2)), "");
53
static_assert
(noexcept(swap(c1, c2)), "");
59
static_assert
(noexcept(swap(c1, c2)), "");
64
static_assert
(!noexcept(swap(c1, c2)), "");
70
static_assert
(!noexcept(swap(c1, c2)), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.cnstr/
default_noexcept.pass.cpp
48
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
53
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
58
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
62
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
67
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
50
static_assert
(std::is_nothrow_destructible<C>::value, "");
55
static_assert
(std::is_nothrow_destructible<C>::value, "");
59
static_assert
(!std::is_nothrow_destructible<C>::value, "");
64
static_assert
(!std::is_nothrow_destructible<C>::value, "");
Completed in 199 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>