Home
last modified time | relevance | path

Searched refs:is_move_constructible (Results 1 – 25 of 86) sorted by relevance

1234

/third_party/boost/libs/type_erasure/test/
Dtest_sfinae.cpp25 using is_move_constructible = boost::is_constructible<T, T&&>; typedef
44 BOOST_MPL_ASSERT_NOT((is_move_constructible<any<destructible<> > >));
47 BOOST_MPL_ASSERT((is_move_constructible<any<copy_constructible<> > >));
50 BOOST_MPL_ASSERT((is_move_constructible<any<move_constructible> >));
54 BOOST_MPL_ASSERT_NOT((is_move_constructible<any<mutable_copy> >));
/third_party/boost/libs/variant2/test/
Dvariant_special.cpp81 …BOOST_TEST_EQ( std::is_move_constructible<variant<U>>::value, std::is_move_constructible<U>::value… in operator ()()
85 …BOOST_TEST_GE( std::is_move_constructible<variant<U>>::value, std::is_move_constructible<U>::value… in operator ()()
94 …BOOST_TEST_EQ( std::is_move_assignable<variant<U>>::value, std::is_move_constructible<U>::value &&… in operator ()()
Dvariant_move_construct.cpp136 BOOST_TEST_TRAIT_TRUE((std::is_move_constructible<variant<X1, X2>>)); in main()
140 BOOST_TEST_TRAIT_FALSE((std::is_move_constructible<variant<int, float, Y>>)); in main()
/third_party/boost/libs/outcome/test/tests/
Dissue0140.cpp80 …static_assert(!std::is_move_constructible<out::result<NotCopyMoveConstructible>>::value, "result<N…
87 …static_assert(!std::is_move_constructible<NotMoveConstructible>::value, "NotMoveConstructible is m…
88 …static_assert(std::is_move_constructible<out::result<NotMoveConstructible>>::value, "result<NotMov…
Dudts.cpp79 static_assert(std::is_move_constructible<udt>::value, "udt is not move constructible");
82 …static_assert(std::is_move_constructible<outcome<udt>>::value, "outcome<udt> is not move construct…
Dissue0012.cpp54 …static_assert(std::is_move_constructible<outcome<udt>>::value, "expected<udt> is not move construc…
/third_party/boost/boost/asio/detail/
Dtype_traits.hpp72 using std::is_move_constructible;
114 struct is_move_constructible : false_type {};
117 struct is_move_constructible : is_copy_constructible<T> {};
/third_party/boost/libs/asio/include/boost/asio/detail/
Dtype_traits.hpp72 using std::is_move_constructible;
114 struct is_move_constructible : false_type {};
117 struct is_move_constructible : is_copy_constructible<T> {};
/third_party/boost/boost/thread/concurrent_queues/
Dqueue_base.hpp148 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
156 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
160 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
Ddeque_base.hpp148 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
156 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
160 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
Ddeque_adaptor.hpp156 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
164 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
168 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
Dqueue_adaptor.hpp156 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
164 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
168 bool Movable = std::is_move_constructible<T>::value && std::is_move_assignable<T>::value
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
Dtype_traits.h111 : std::is_move_constructible<
151 std::is_move_constructible<detail::trivial_helper<T>>::value;
153 !std::is_move_constructible<T>::value;
/third_party/boost/libs/hana/test/pair/
Dcnstr.move.cpp91 static_assert(!std::is_move_constructible<Pair1>::value, ""); in main()
95 static_assert(!std::is_move_constructible<Pair2>::value, ""); in main()
/third_party/boost/libs/hana/test/map/
Dcnstr.move.cpp117 static_assert(!std::is_move_constructible<Map1>::value, ""); in main()
121 static_assert(!std::is_move_constructible<Map2>::value, ""); in main()
/third_party/boost/libs/beast/test/beast/websocket/
Dstream.cpp173 BOOST_STATIC_ASSERT(std::is_move_constructible< in run()
185 BOOST_STATIC_ASSERT(std::is_move_constructible< in run()
/third_party/gn/src/base/containers/
Dvector_buffer.h117 typename std::enable_if<std::is_move_constructible<T2>::value &&
133 typename std::enable_if<!std::is_move_constructible<T2>::value &&
/third_party/boost/boost/beast/core/
Dtype_traits.hpp49 std::is_move_constructible<typename std::decay<T>::type>::value &&
/third_party/boost/boost/poly_collection/detail/
Dis_acceptable.hpp33 std::is_move_constructible<typename std::decay<T>::type>::value&&
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dranden_test.cc36 static_assert(std::is_move_constructible<Randen>::value, in TEST()
/third_party/abseil-cpp/absl/random/internal/
Dranden_test.cc36 static_assert(std::is_move_constructible<Randen>::value, in TEST()
/third_party/boost/libs/dll/test/
Dcpp_import_class_test.cpp68 BOOST_TEST( cl.is_move_constructible()); in main()
/third_party/boost/libs/hana/include/boost/hana/
Dtraits.hpp93 constexpr auto is_move_constructible = detail::hana_trait<std::is_move_constructible>{};
/third_party/boost/boost/hana/
Dtraits.hpp93 constexpr auto is_move_constructible = detail::hana_trait<std::is_move_constructible>{};
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Doptional.h320 : std::is_move_constructible<T>::value ? copy_traits::movable
330 std::is_move_constructible<T>::value

1234