/third_party/boost/libs/type_traits/test/ |
D | is_nothrow_move_constructible_test.cpp | 54 TT_TEST_BEGIN(is_nothrow_move_constructible) 56 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<bool>::value, true); 57 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<bool const>::value, true); 60 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<bool volatile>::value, false); 61 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<bool const volatile>::value, fals… 64 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<signed char>::value, true); 65 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<signed char const>::value, true); 68 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<signed char volatile>::value, fal… 69 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<signed char const volatile>::valu… 71 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_nothrow_move_constructible<unsigned char>::value, true); [all …]
|
/third_party/boost/boost/type_traits/ |
D | is_nothrow_move_constructible.hpp | 27 struct is_nothrow_move_constructible : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_CONSTRU… struct 32 template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {}; struct 33 template <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_t… struct 54 template <class T> struct is_nothrow_move_constructible 60 template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {}; 61 template <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_t… 62 template <class T, std::size_t N> struct is_nothrow_move_constructible<T[N]> : public ::boost::fals… 63 template <class T> struct is_nothrow_move_constructible<T[]> : public ::boost::false_type{}; 74 struct is_nothrow_move_constructible 83 template <> struct is_nothrow_move_constructible<void> : false_type{}; struct [all …]
|
/third_party/boost/libs/variant2/test/ |
D | variant_move_construct.cpp | 31 STATIC_ASSERT( !std::is_nothrow_move_constructible<X1>::value ); 44 STATIC_ASSERT( !std::is_nothrow_move_constructible<X2>::value ); 120 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_move_constructible<variant<int>>)); in main() 121 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_move_constructible<variant<int const>>)); in main() 122 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_move_constructible<variant<int, int>>)); in main() 123 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_move_constructible<variant<int, float>>)); in main() 124 … BOOST_TEST_TRAIT_TRUE((std::is_nothrow_move_constructible<variant<int, int, float, float>>)); in main() 126 BOOST_TEST_TRAIT_FALSE((std::is_nothrow_move_constructible<variant<X1>>)); in main() 127 BOOST_TEST_TRAIT_FALSE((std::is_nothrow_move_constructible<variant<X1, int>>)); in main() 128 BOOST_TEST_TRAIT_FALSE((std::is_nothrow_move_constructible<variant<X1, int, float>>)); in main() [all …]
|
D | variant_special.cpp | 89 …BOOST_TEST_EQ( std::is_nothrow_move_constructible<variant<U>>::value, std::is_nothrow_move_constru… in operator ()() 95 …_EQ( std::is_nothrow_move_assignable<variant<U>>::value, std::is_nothrow_move_constructible<U>::va… in operator ()()
|
D | variant_valueless.cpp | 40 STATIC_ASSERT( std::is_nothrow_move_constructible<X1>::value ); 63 STATIC_ASSERT( std::is_nothrow_move_constructible<X2>::value ); 89 STATIC_ASSERT( !std::is_nothrow_move_constructible<X3>::value ); 99 STATIC_ASSERT( std::is_nothrow_move_constructible<monostate>::value );
|
/third_party/boost/libs/optional/test/ |
D | optional_test_noexcept_move.cpp | 47 BOOST_STATIC_ASSERT(::boost::is_nothrow_move_constructible<NothrowBoth>::value); 50 BOOST_STATIC_ASSERT(::boost::is_nothrow_move_constructible<NothrowCtor>::value); 53 BOOST_STATIC_ASSERT(!::boost::is_nothrow_move_constructible<NothrowAssign>::value); 56 BOOST_STATIC_ASSERT(!::boost::is_nothrow_move_constructible<NothrowNone>::value); 62 BOOST_STATIC_ASSERT(::boost::is_nothrow_move_constructible<optional<NothrowBoth> >::value); 66 BOOST_STATIC_ASSERT(::boost::is_nothrow_move_constructible<optional<NothrowCtor> >::value); 70 BOOST_STATIC_ASSERT(!::boost::is_nothrow_move_constructible<optional<NothrowAssign> >::value); 74 BOOST_STATIC_ASSERT(!::boost::is_nothrow_move_constructible<optional<NothrowNone> >::value);
|
/third_party/boost/libs/unordered/test/unordered/ |
D | noexcept_tests.cpp | 165 !boost::is_nothrow_move_constructible<hash_possible_exception>::value); in UNORDERED_AUTO_TEST() 169 BOOST_TEST((!boost::is_nothrow_move_constructible< in UNORDERED_AUTO_TEST() 177 boost::is_nothrow_move_constructible<hash_nothrow_move_construct>::value; in UNORDERED_AUTO_TEST() 203 BOOST_TEST((boost::is_nothrow_move_constructible< in UNORDERED_AUTO_TEST() 205 BOOST_TEST((boost::is_nothrow_move_constructible< in UNORDERED_AUTO_TEST() 207 BOOST_TEST((boost::is_nothrow_move_constructible< in UNORDERED_AUTO_TEST() 209 BOOST_TEST((boost::is_nothrow_move_constructible< in UNORDERED_AUTO_TEST() 213 BOOST_TEST((!boost::is_nothrow_move_constructible< in UNORDERED_AUTO_TEST() 216 (!boost::is_nothrow_move_constructible<boost::unordered_multiset<int, in UNORDERED_AUTO_TEST() 226 BOOST_TEST(boost::is_nothrow_move_constructible<throwing_set>::value); in UNORDERED_AUTO_TEST()
|
/third_party/boost/libs/type_traits/doc/ |
D | is_nothrow_move_constructible.qbk | 9 [section:is_nothrow_move_constructible is_nothrow_move_constructible] 12 struct is_nothrow_move_constructible : public __tof {}; 23 `is_nothrow_move_constructible` will never report that a class or struct has a 28 __header ` #include <boost/type_traits/is_nothrow_move_constructible.hpp>` or ` #include <boost/typ…
|
/third_party/boost/boost/poly_collection/detail/ |
D | value_holder.hpp | 74 using is_nothrow_move_constructible=std::is_nothrow_move_constructible<T>; typedef in boost::poly_collection::detail::value_holder 103 noexcept(is_nothrow_move_constructible::value) in value_holder() 124 noexcept(is_nothrow_move_constructible::value) in value_holder() 137 noexcept(is_nothrow_move_constructible::value) in value_holder() 146 noexcept(is_nothrow_move_constructible::value) in value_holder() 205 static_assert(is_nothrow_move_constructible::value, in move_assign()
|
/third_party/boost/libs/outcome/test/tests/ |
D | noexcept-propagation.cpp | 46 BOOST_CHECK(std::is_nothrow_move_constructible<type>::value); 54 …BOOST_CHECK(std::is_nothrow_move_constructible<type>::value == std::is_nothrow_move_constructible<… 78 BOOST_CHECK(!std::is_nothrow_move_constructible<type>::value);
|
/third_party/boost/libs/multiprecision/test/ |
D | test_nothrow_gmp.cpp | 20 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::mpz_int>::value); 21 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::mpq_rational>::valu… 22 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::mpf_float>::value);
|
D | test_nothrow_cpp_rational.cpp | 30 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::cpp_rational>::valu… 31 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<rat128_t>::value); 32 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<checked_rat128_t>::value); 33 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<urat128_t>::value); 34 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<checked_urat128_t>::value); 35 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<rat512_t>::value); 36 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<checked_rat512_t>::value); 37 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<urat512_t>::value); 38 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<checked_urat512_t>::value);
|
D | test_nothrow_mpfr.cpp | 20 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::mpfr_float>::value); 21 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::mpfr_float_100>::va…
|
D | test_nothrow_cpp_int.cpp | 20 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::cpp_int>::value); 21 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::int128_t>::value); 22 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::checked_int128_t>::… 23 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::uint128_t>::value); 24 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::checked_uint128_t>:… 25 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::int512_t>::value); 26 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::checked_int512_t>::… 27 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::uint512_t>::value); 28 BOOST_STATIC_ASSERT(boost::is_nothrow_move_constructible<boost::multiprecision::checked_uint512_t>:…
|
/third_party/boost/libs/mp11/test/ |
D | mp_any.cpp | 20 … mp_any<std::is_nothrow_copy_constructible<T>..., mp_any<std::is_nothrow_move_constructible<T>...>… 21 …mp_any<mp_any<std::is_nothrow_copy_constructible<T>...>, std::is_nothrow_move_constructible<T>...>; 26 …std::has_trivial_destructor<T>...>::value, mp_any<mp_all<std::is_nothrow_move_constructible<T>...>… 28 …::is_trivially_destructible<T>...>::value, mp_any<mp_all<std::is_nothrow_move_constructible<T>...>…
|
/third_party/boost/boost/move/ |
D | traits.hpp | 56 static const bool value = boost::move_detail::is_nothrow_move_constructible<T>::value && 67 static const bool value = is_nothrow_move_constructible<T>::value ||
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
D | vulkan_structs.hpp | 126 …VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AabbPositionsKH… 317 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryTrianglesDat… 406 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryAabbsDataKHR… 496 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryInstancesDat… 665 … std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR>::value, 940 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR… 1047 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR>::… 1156 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR>::… 1298 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR>::valu… 1477 …VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::GeometryTriangl… [all …]
|
/third_party/vulkan-headers/include/vulkan/ |
D | vulkan_structs.hpp | 126 …VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AabbPositionsKH… 309 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryTrianglesDat… 400 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryAabbsDataKHR… 491 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryInstancesDat… 651 … std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureGeometryKHR>::value, 919 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureBuildGeometryInfoKHR… 1030 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureBuildRangeInfoKHR>::… 1139 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureBuildSizesInfoKHR>::… 1284 …std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoKHR>::valu… 1472 …VULKAN_HPP_STATIC_ASSERT( std::is_nothrow_move_constructible<VULKAN_HPP_NAMESPACE::GeometryTriangl… [all …]
|
/third_party/boost/libs/smart_ptr/test/ |
D | sp_nothrow_test.cpp | 39 BOOST_TEST_TRAIT_TRUE(( std::is_nothrow_move_constructible<T> )); in test_move() 79 BOOST_TEST_TRAIT_TRUE(( std::is_nothrow_move_constructible<Y> )); in main()
|
/third_party/boost/boost/exception/detail/ |
D | error_info_impl.hpp | 71 error_info( T && v ) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<T>::value): in BOOST_NOEXCEPT_IF() 75 … error_info( error_info && x ) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<T>::value): in BOOST_NOEXCEPT_IF()
|
/third_party/boost/boost/log/sources/ |
D | basic_logger.hpp | 160 …ger(BOOST_RV_REF(basic_logger) that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< threa… in BOOST_NOEXCEPT_IF() 161 … boost::is_nothrow_move_constructible< core_ptr >::value && in BOOST_NOEXCEPT_IF() 162 … boost::is_nothrow_move_constructible< attribute_set >::value) : in BOOST_NOEXCEPT_IF() 363 …gger(BOOST_RV_REF(logger_base) that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< base_… in BOOST_NOEXCEPT_IF() 537 …gger(BOOST_RV_REF(logger_base) that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< base_… in BOOST_NOEXCEPT_IF() 608 …_type(BOOST_RV_REF(class_type) that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< typen…
|
D | severity_feature.hpp | 217 …_RV_REF(basic_severity_logger) that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< base_… in BOOST_NOEXCEPT_IF() 218 … boost::is_nothrow_move_constructible< severity_level >::value && in BOOST_NOEXCEPT_IF() 219 … boost::is_nothrow_move_constructible< severity_attribute >::value) : in BOOST_NOEXCEPT_IF()
|
D | exception_handler_feature.hpp | 109 … that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< base_type >::value && boost::is_not… in BOOST_NOEXCEPT_IF()
|
D | channel_feature.hpp | 119 … that) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible< base_type >::value && boost::is_not… in BOOST_NOEXCEPT_IF()
|
/third_party/boost/boost/heap/detail/ |
D | stable_heap.hpp | 174 heap_base(heap_base && rhs) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<Cmp>::value): in BOOST_NOEXCEPT_IF() 258 …void swap(heap_base & rhs) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<Cmp>::value && b… in swap() 335 heap_base(heap_base && rhs) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<Cmp>::value): in BOOST_NOEXCEPT_IF() 447 …void swap(heap_base & rhs) BOOST_NOEXCEPT_IF(boost::is_nothrow_move_constructible<Cmp>::value && b… in swap()
|