/third_party/json/test/src/ |
D | unit-noexcept.cpp | 80 …CHECK(std::is_nothrow_copy_constructible<json::exception>::value == std::is_nothrow_copy_construct… 81 …CHECK(std::is_nothrow_copy_constructible<json::parse_error>::value == std::is_nothrow_copy_constru… 82 …CHECK(std::is_nothrow_copy_constructible<json::invalid_iterator>::value == std::is_nothrow_copy_co… 83 …CHECK(std::is_nothrow_copy_constructible<json::type_error>::value == std::is_nothrow_copy_construc… 84 …CHECK(std::is_nothrow_copy_constructible<json::out_of_range>::value == std::is_nothrow_copy_constr… 85 …CHECK(std::is_nothrow_copy_constructible<json::other_error>::value == std::is_nothrow_copy_constru…
|
D | unit-concepts.cpp | 132 CHECK(std::is_nothrow_copy_constructible<json::iterator>::value); 133 CHECK(std::is_nothrow_copy_constructible<json::const_iterator>::value);
|
/third_party/boost/libs/variant2/test/ |
D | variant_copy_construct.cpp | 32 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 45 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value ); 136 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_copy_constructible<variant<int>>)); in main() 137 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_copy_constructible<variant<int const>>)); in main() 138 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_copy_constructible<variant<int, int>>)); in main() 139 BOOST_TEST_TRAIT_TRUE((std::is_nothrow_copy_constructible<variant<int, float>>)); in main() 140 … BOOST_TEST_TRAIT_TRUE((std::is_nothrow_copy_constructible<variant<int, int, float, float>>)); in main() 142 BOOST_TEST_TRAIT_FALSE((std::is_nothrow_copy_constructible<variant<X1>>)); in main() 143 BOOST_TEST_TRAIT_FALSE((std::is_nothrow_copy_constructible<variant<X1, int>>)); in main() 144 BOOST_TEST_TRAIT_FALSE((std::is_nothrow_copy_constructible<variant<X1, int, float>>)); in main() [all …]
|
D | variant_special.cpp | 75 …BOOST_TEST_EQ( std::is_nothrow_copy_constructible<variant<U>>::value, std::is_nothrow_copy_constru… in operator ()() 92 …_EQ( std::is_nothrow_copy_assignable<variant<U>>::value, std::is_nothrow_copy_constructible<U>::va… in operator ()()
|
D | variant_valueless.cpp | 39 STATIC_ASSERT( std::is_nothrow_copy_constructible<X1>::value ); 62 STATIC_ASSERT( std::is_nothrow_copy_constructible<X2>::value ); 88 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X3>::value ); 98 STATIC_ASSERT( std::is_nothrow_copy_constructible<monostate>::value );
|
D | variant_move_construct.cpp | 30 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 43 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_subset.cpp | 39 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 59 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_convert_construct.cpp | 35 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 55 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_emplace_type.cpp | 35 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 55 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_value_assign.cpp | 35 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 55 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_emplace_index.cpp | 35 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 55 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_copy_assign.cpp | 35 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 55 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_move_assign.cpp | 35 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 55 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
D | variant_swap.cpp | 35 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X1>::value ); 55 STATIC_ASSERT( !std::is_nothrow_copy_constructible<X2>::value );
|
/third_party/boost/libs/outcome/test/tests/ |
D | noexcept-propagation.cpp | 45 BOOST_CHECK(std::is_nothrow_copy_constructible<type>::value); 53 …BOOST_CHECK(std::is_nothrow_copy_constructible<type>::value == std::is_nothrow_copy_constructible<… 77 BOOST_CHECK(!std::is_nothrow_copy_constructible<type>::value);
|
D | experimental-core-result-status.cpp | 279 static_assert(!std::is_nothrow_copy_constructible<decltype(a)>::value, ""); 296 static_assert(!std::is_nothrow_copy_constructible<decltype(d)>::value, ""); 313 static_assert(!std::is_nothrow_copy_constructible<decltype(e)>::value, "");
|
D | core-result.cpp | 292 static_assert(std::is_nothrow_copy_constructible<decltype(a)>::value, ""); 312 static_assert(!std::is_nothrow_copy_constructible<decltype(d)>::value, ""); 329 static_assert(!std::is_nothrow_copy_constructible<decltype(e)>::value, "");
|
/third_party/boost/boost/poly_collection/detail/ |
D | value_holder.hpp | 76 using is_nothrow_copy_constructible=std::is_nothrow_copy_constructible<T>; typedef in boost::poly_collection::detail::value_holder 96 noexcept(is_nothrow_copy_constructible::value) in value_holder() 117 noexcept(is_nothrow_copy_constructible::value) in value_holder() 134 noexcept(is_nothrow_copy_constructible::value) in value_holder() 143 noexcept(is_nothrow_copy_constructible::value) in value_holder()
|
/third_party/boost/libs/mp11/test/ |
D | mp_any.cpp | 20 template<class... T> using check1 = mp_any<std::is_nothrow_copy_constructible<T>..., mp_any<std::is… 21 template<class... T> using check2 = mp_any<mp_any<std::is_nothrow_copy_constructible<T>...>, std::i… 22 template<class... T> using check3 = mp_any<mp_all<std::is_nothrow_copy_constructible<T>...>, std::i…
|
/third_party/boost/boost/asio/detail/ |
D | type_traits.hpp | 73 using std::is_nothrow_copy_constructible; 120 struct is_nothrow_copy_constructible : boost::has_nothrow_copy<T> {};
|
/third_party/boost/boost/hof/detail/ |
D | intrinsics.hpp | 58 #define BOOST_HOF_IS_NOTHROW_COPY_CONSTRUCTIBLE(...) (std::is_nothrow_copy_constructible<__VA_ARGS_… 60 #define BOOST_HOF_IS_NOTHROW_COPY_CONSTRUCTIBLE(...) std::is_nothrow_copy_constructible<__VA_ARGS__…
|
/third_party/boost/boost/outcome/experimental/status-code/ |
D | errored_status_code.hpp | 81 …explicit errored_status_code(const _base &o) noexcept(std::is_nothrow_copy_constructible<_base>::v… in errored_status_code() 133 …explicit errored_status_code(const value_type &v) noexcept(std::is_nothrow_copy_constructible<valu… in errored_status_code() 150 …_code(const status_code<erased<ErasedType>> &v) noexcept(std::is_nothrow_copy_constructible<value_… in errored_status_code() 199 …explicit errored_status_code(const _base &o) noexcept(std::is_nothrow_copy_constructible<_base>::v… in errored_status_code()
|
/third_party/boost/libs/smart_ptr/test/ |
D | sp_nothrow_test.cpp | 33 BOOST_TEST_TRAIT_TRUE(( std::is_nothrow_copy_constructible<T> )); in test_copy()
|
/third_party/boost/boost/container/detail/ |
D | type_traits.hpp | 56 using ::boost::move_detail::is_nothrow_copy_constructible;
|
/third_party/boost/boost/hana/ |
D | traits.hpp | 89 …constexpr auto is_nothrow_copy_constructible = detail::hana_trait<std::is_nothrow_copy_constructib…
|