Home
last modified time | relevance | path

Searched refs:is_trivially_move_constructible (Results 1 – 21 of 21) sorted by relevance

/third_party/abseil-cpp/absl/meta/
Dtype_traits_test.cc550 EXPECT_FALSE(absl::is_trivially_move_constructible<BadType>::value); in TEST()
557 EXPECT_TRUE(absl::is_trivially_move_constructible<bool>::value); in TEST()
558 EXPECT_TRUE(absl::is_trivially_move_constructible<char>::value); in TEST()
559 EXPECT_TRUE(absl::is_trivially_move_constructible<unsigned char>::value); in TEST()
560 EXPECT_TRUE(absl::is_trivially_move_constructible<signed char>::value); in TEST()
561 EXPECT_TRUE(absl::is_trivially_move_constructible<wchar_t>::value); in TEST()
562 EXPECT_TRUE(absl::is_trivially_move_constructible<int>::value); in TEST()
563 EXPECT_TRUE(absl::is_trivially_move_constructible<unsigned int>::value); in TEST()
564 EXPECT_TRUE(absl::is_trivially_move_constructible<int16_t>::value); in TEST()
565 EXPECT_TRUE(absl::is_trivially_move_constructible<uint16_t>::value); in TEST()
[all …]
Dtype_traits.h375 struct is_trivially_move_constructible
385 std::is_trivially_move_constructible<T>::value ==
386 is_trivially_move_constructible::value;
387 static_assert(compliant || std::is_trivially_move_constructible<T>::value,
390 static_assert(compliant || !std::is_trivially_move_constructible<T>::value,
/third_party/skia/third_party/externals/abseil-cpp/absl/meta/
Dtype_traits_test.cc550 EXPECT_FALSE(absl::is_trivially_move_constructible<BadType>::value); in TEST()
557 EXPECT_TRUE(absl::is_trivially_move_constructible<bool>::value); in TEST()
558 EXPECT_TRUE(absl::is_trivially_move_constructible<char>::value); in TEST()
559 EXPECT_TRUE(absl::is_trivially_move_constructible<unsigned char>::value); in TEST()
560 EXPECT_TRUE(absl::is_trivially_move_constructible<signed char>::value); in TEST()
561 EXPECT_TRUE(absl::is_trivially_move_constructible<wchar_t>::value); in TEST()
562 EXPECT_TRUE(absl::is_trivially_move_constructible<int>::value); in TEST()
563 EXPECT_TRUE(absl::is_trivially_move_constructible<unsigned int>::value); in TEST()
564 EXPECT_TRUE(absl::is_trivially_move_constructible<int16_t>::value); in TEST()
565 EXPECT_TRUE(absl::is_trivially_move_constructible<uint16_t>::value); in TEST()
[all …]
Dtype_traits.h375 struct is_trivially_move_constructible
385 std::is_trivially_move_constructible<T>::value ==
386 is_trivially_move_constructible::value;
387 static_assert(compliant || std::is_trivially_move_constructible<T>::value,
390 static_assert(compliant || !std::is_trivially_move_constructible<T>::value,
/third_party/boost/libs/variant2/test/
Dvariant_trivial.cpp84 …BOOST_TEST_EQ( v2d::is_trivially_move_constructible<variant<U>>::value, v2d::is_trivially_move_con… in operator ()()
85 …U>>::value, std::is_trivially_destructible<U>::value && v2d::is_trivially_move_constructible<U>::v… in operator ()()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
Dtype_traits.h110 struct is_trivially_move_constructible
114 struct is_trivially_move_constructible<T &> : std::true_type {};
116 struct is_trivially_move_constructible<T &&> : std::true_type {};
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DFunctionExtras.h68 llvm::is_trivially_move_constructible<T>::value &&
257 if (llvm::is_trivially_move_constructible<CallableT>::value && in unique_function()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dstring_constant_test.cc39 EXPECT_TRUE(absl::is_trivially_move_constructible<T>::value); in TEST()
/third_party/boost/boost/container/detail/
Dtype_traits.hpp52 using ::boost::move_detail::is_trivially_move_constructible;
Dpair.hpp632 struct is_trivially_move_constructible;
656 struct is_trivially_move_constructible<boost::container::dtl::pair<A,B> > struct
658 static const bool value = boost::move_detail::is_trivially_move_constructible<A>::value && argument
659 boost::move_detail::is_trivially_move_constructible<B>::value ;
/third_party/boost/libs/hana/include/boost/hana/
Dtraits.hpp94 …constexpr auto is_trivially_move_constructible = detail::hana_trait<std::is_trivially_move_constru…
/third_party/boost/boost/hana/
Dtraits.hpp94 …constexpr auto is_trivially_move_constructible = detail::hana_trait<std::is_trivially_move_constru…
/third_party/boost/libs/config/test/
Dboost_no_cxx11_hdr_type_traits.ipp66 using std::is_trivially_move_constructible;
/third_party/boost/libs/hana/test/type/
Dtraits.cpp80 hana::traits::is_trivially_move_constructible(s); in main()
/third_party/abseil-cpp/absl/types/
Dvariant_test.cc405 struct is_trivially_move_constructible struct
1973 EXPECT_TRUE(is_trivially_move_constructible<absl::monostate>::value); in TEST()
2558 EXPECT_TRUE(is_trivially_move_constructible<variant<int>>::value); in TEST()
2580 static_assert(is_trivially_move_constructible<variant<int>>(), ""); in TEST()
2587 static_assert(is_trivially_move_constructible<variant<variant<int>>>(), ""); in TEST()
2634 EXPECT_FALSE(is_trivially_move_constructible<TrivDestVar>::value); in TEST()
2644 EXPECT_TRUE(is_trivially_move_constructible<TrivMoveVar>::value); in TEST()
2654 EXPECT_TRUE(is_trivially_move_constructible<TrivCopyVar>::value); in TEST()
2664 EXPECT_TRUE(is_trivially_move_constructible<TrivMoveAssignVar>::value); in TEST()
2675 EXPECT_TRUE(is_trivially_move_constructible<TrivCopyAssignVar>::value); in TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Dvariant_test.cc405 struct is_trivially_move_constructible struct
1973 EXPECT_TRUE(is_trivially_move_constructible<absl::monostate>::value); in TEST()
2560 EXPECT_TRUE(is_trivially_move_constructible<variant<int>>::value); in TEST()
2582 static_assert(is_trivially_move_constructible<variant<int>>(), ""); in TEST()
2589 static_assert(is_trivially_move_constructible<variant<variant<int>>>(), ""); in TEST()
2636 EXPECT_FALSE(is_trivially_move_constructible<TrivDestVar>::value); in TEST()
2646 EXPECT_TRUE(is_trivially_move_constructible<TrivMoveVar>::value); in TEST()
2656 EXPECT_TRUE(is_trivially_move_constructible<TrivCopyVar>::value); in TEST()
2666 EXPECT_TRUE(is_trivially_move_constructible<TrivMoveAssignVar>::value); in TEST()
2677 EXPECT_TRUE(is_trivially_move_constructible<TrivCopyAssignVar>::value); in TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
Dconformance_testing_test.cc241 EXPECT_FALSE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
252 EXPECT_FALSE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
263 EXPECT_FALSE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
282 EXPECT_TRUE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
/third_party/abseil-cpp/absl/types/internal/
Dconformance_testing_test.cc241 EXPECT_FALSE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
252 EXPECT_FALSE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
263 EXPECT_FALSE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
282 EXPECT_TRUE(absl::is_trivially_move_constructible<arch>::value); in TYPED_TEST_P()
/third_party/boost/boost/variant2/
Dvariant.hpp490 template<class T> struct is_trivially_move_constructible: mp11::mp_bool<std::is_move_constructible<… struct
502 using std::is_trivially_move_constructible;
1395 mp11::mp_all<detail::is_trivially_move_constructible<T>...>::value,
1469 …mp11::mp_all<std::is_trivially_destructible<T>..., detail::is_trivially_move_constructible<T>..., …
/third_party/boost/boost/move/detail/
Dtype_traits.hpp829 struct is_trivially_move_constructible struct
/third_party/boost/boost/outcome/
Dbasic_result.hpp776 static_assert(std::is_trivially_move_constructible<basic_result<int, long, policy::all_narrow>>::va…