OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:is_nothrow_move_constructible
(Results
1 - 25
of
60
) sorted by null
1
2
3
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_move_constructible.pass.cpp
19
static_assert( std::
is_nothrow_move_constructible
<T>::value, "");
20
static_assert( std::
is_nothrow_move_constructible
<const T>::value, "");
26
static_assert(!std::
is_nothrow_move_constructible
<T>::value, "");
27
static_assert(!std::
is_nothrow_move_constructible
<const T>::value, "");
28
static_assert(!std::
is_nothrow_move_constructible
<volatile T>::value, "");
29
static_assert(!std::
is_nothrow_move_constructible
<const volatile T>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_move_constructible.pass.cpp
19
static_assert( std::
is_nothrow_move_constructible
<T>::value, "");
20
static_assert( std::
is_nothrow_move_constructible
<const T>::value, "");
26
static_assert(!std::
is_nothrow_move_constructible
<T>::value, "");
27
static_assert(!std::
is_nothrow_move_constructible
<const T>::value, "");
28
static_assert(!std::
is_nothrow_move_constructible
<volatile T>::value, "");
29
static_assert(!std::
is_nothrow_move_constructible
<const volatile T>::value, "");
/external/libcxx/test/strings/basic.string/string.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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++/libcxx/test/strings/basic.string/string.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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, "");
/external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<container_type>::value &&
14
//
is_nothrow_move_constructible
<Compare>::value);
28
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
/external/libcxx/test/containers/container.adaptors/queue/queue.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<container_type>::value);
27
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
/external/libcxx/test/containers/container.adaptors/stack/stack.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<container_type>::value);
27
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
/external/libcxx/test/containers/sequences/deque/deque.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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, "");
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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, "");
/external/libcxx/test/containers/sequences/list/list.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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, "");
/external/libcxx/test/containers/sequences/vector/vector.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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, "");
/external/libcxx/test/containers/sequences/vector.bool/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<container_type>::value &&
14
//
is_nothrow_move_constructible
<Compare>::value);
28
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<container_type>::value);
27
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<container_type>::value);
27
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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++/libcxx/test/containers/sequences/list/list.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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++/libcxx/test/containers/sequences/vector/vector.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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++/libcxx/test/containers/sequences/vector.bool/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
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, "");
/external/clang/test/SemaTemplate/
exception-spec-crash.cpp
4
template <class _Tp> struct
is_nothrow_move_constructible
{
struct
18
noexcept(
is_nothrow_move_constructible
<allocator_type>::value);
/external/libcxx/test/containers/associative/map/map.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value &&
14
//
is_nothrow_move_constructible
<key_compare>::value);
36
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
40
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
44
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
48
static_assert(!std::
is_nothrow_move_constructible
<C>::value, "");
/external/libcxx/test/containers/associative/multimap/multimap.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value &&
14
//
is_nothrow_move_constructible
<key_compare>::value);
36
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
40
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
44
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
48
static_assert(!std::
is_nothrow_move_constructible
<C>::value, "");
/external/libcxx/test/containers/associative/multiset/multiset.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value &&
14
//
is_nothrow_move_constructible
<key_compare>::value);
36
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
40
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
44
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
48
static_assert(!std::
is_nothrow_move_constructible
<C>::value, "");
/external/libcxx/test/containers/associative/set/set.cons/
move_noexcept.pass.cpp
13
// noexcept(
is_nothrow_move_constructible
<allocator_type>::value &&
14
//
is_nothrow_move_constructible
<key_compare>::value);
36
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
40
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
44
static_assert(std::
is_nothrow_move_constructible
<C>::value, "");
48
static_assert(!std::
is_nothrow_move_constructible
<C>::value, "");
Completed in 2330 milliseconds
1
2
3