OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:static_assert
(Results
251 - 275
of
918
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/deque/deque.cons/
default_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
43
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_destructible<C>::value, "");
41
static_assert
(std::is_nothrow_destructible<C>::value, "");
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
49
static_assert
(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
41
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
45
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
49
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
43
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/deque/deque.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++/test/containers/sequences/forwardlist/forwardlist.cons/
default_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
43
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_destructible<C>::value, "");
41
static_assert
(std::is_nothrow_destructible<C>::value, "");
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
49
static_assert
(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
41
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
45
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
49
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
43
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.spec/
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++/test/containers/sequences/list/list.cons/
default_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
43
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_destructible<C>::value, "");
41
static_assert
(std::is_nothrow_destructible<C>::value, "");
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
49
static_assert
(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
41
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
45
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
49
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
43
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/list/list.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++/test/containers/sequences/vector/vector.cons/
default_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_default_constructible<C>::value, "");
43
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_default_constructible<C>::value, "");
dtor_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_destructible<C>::value, "");
41
static_assert
(std::is_nothrow_destructible<C>::value, "");
45
static_assert
(std::is_nothrow_destructible<C>::value, "");
49
static_assert
(!std::is_nothrow_destructible<C>::value, "");
move_assign_noexcept.pass.cpp
37
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
41
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
45
static_assert
(std::is_nothrow_move_assignable<C>::value, "");
49
static_assert
(!std::is_nothrow_move_assignable<C>::value, "");
move_noexcept.pass.cpp
35
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
39
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
43
static_assert
(std::is_nothrow_move_constructible<C>::value, "");
47
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/vector/vector.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++/test/containers/sequences/vector.bool/
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, "");
46
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, "");
48
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, "");
48
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, "");
46
static_assert
(!std::is_nothrow_move_constructible<C>::value, "");
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)), "");
56
static_assert
(!noexcept(swap(c1, c2)), "");
Completed in 80 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>