/third_party/json/include/nlohmann/detail/meta/ |
H A D | type_traits.hpp | 198 // Reimplementation of is_constructible and is_default_constructible, due to them being broken for 202 struct is_default_constructible : std::is_default_constructible<T> {}; struct 205 struct is_default_constructible<std::pair<T1, T2>> struct 206 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {}; 209 struct is_default_constructible<const std::pair<T1, T2>> struct 210 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {}; 213 struct is_default_constructible<st struct 217 struct is_default_constructible<const std::tuple<Ts...>> global() struct [all...] |
/third_party/node/deps/v8/third_party/googletest/gmock_custom/gmock/internal/custom/ |
H A D | gmock-port.h | 12 // Provide alternative implementation of std::is_default_constructible for 13 // old, pre-4.7 of libstdc++, where is_default_constructible is missing. 21 using is_default_constructible = std::is_constructible<T>;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/ |
H A D | casts.h | 48 std::is_default_constructible<Dest>::value> {};
|
/third_party/skia/third_party/externals/abseil-cpp/absl/meta/ |
H A D | type_traits.h | 343 std::is_default_constructible<T>::value && 694 std::is_default_constructible<std::hash<Key>>::value, in DoIt()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_testing.h | 513 If<PropertiesOfT<Prof>::is_default_constructible && in operator ()() 518 If<PropertiesOfT<Prof>::is_default_constructible && in operator ()() 968 If<PropertiesOfT<minimal_profile>::is_default_constructible>::Invoke( in ExpectRegularityImpl()
|
H A D | conformance_testing_test.cc | 177 EXPECT_FALSE(std::is_default_constructible<arch>::value); in TYPED_TEST_P() 188 EXPECT_TRUE(std::is_default_constructible<arch>::value); in TYPED_TEST_P() 199 EXPECT_TRUE(std::is_default_constructible<arch>::value); in TYPED_TEST_P() 215 EXPECT_TRUE(std::is_default_constructible<arch>::value); in TYPED_TEST_P()
|
H A D | conformance_profile.h | 613 static constexpr bool is_default_constructible = // NOLINT member
|
H A D | variant.h | 1044 std::is_default_constructible<LazyH>::value, LazyH>>
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/ |
H A D | hash_test.cc | 65 using is_hashable = std::is_default_constructible<absl::Hash<T>>; 618 EXPECT_TRUE(std::is_default_constructible<absl::Hash<int>>::value); in TEST() 631 EXPECT_FALSE(std::is_default_constructible<absl::Hash<X>>::value); in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/internal/ |
H A D | flag.h | 311 std::is_default_constructible<T>::value && (sizeof(T) < 8)>;
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-actions.h | 199 static bool Exists() { return ::std::is_default_constructible<T>::value; } in Exists() 203 T, ::std::is_default_constructible<T>::value>::Get(); in Get()
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 3499 // Reimplementation of is_constructible and is_default_constructible, due to them being broken for 3503 struct is_default_constructible : std::is_default_constructible<T> {}; 3506 struct is_default_constructible<std::pair<T1, T2>> 3507 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {}; 3510 struct is_default_constructible<const std::pair<T1, T2>> 3511 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {}; 3514 struct is_default_constructible<st [all...] |
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 3594 // Reimplementation of is_constructible and is_default_constructible, due to them being broken for 3598 struct is_default_constructible : std::is_default_constructible<T> {}; struct 3601 struct is_default_constructible<std::pair<T1, T2>> struct 3602 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {}; 3605 struct is_default_constructible<const std::pair<T1, T2>> struct 3606 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {}; 3609 struct is_default_constructible<st struct 3613 struct is_default_constructible<const std::tuple<Ts...>> global() struct [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | variant_test.cc | 316 std::is_default_constructible<variant<NonDefaultConstructible>>::value); in TEST() 317 EXPECT_FALSE((std::is_default_constructible< in TEST() 319 EXPECT_TRUE((std::is_default_constructible< in TEST()
|
H A D | optional_test.cc | 1645 EXPECT_TRUE((std::is_default_constructible<Inner>::value)); in TEST()
|
/third_party/json/include/nlohmann/ |
H A D | json.hpp | 1590 detail::is_default_constructible<ValueType>::value&&
|
/third_party/node/deps/ada/ |
H A D | ada.h | 2995 std::is_default_constructible<T>::value || std::is_void<T>::value>
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 3702 struct is_default_constructible 3894 : public is_default_constructible<_Tp> 3962 : public __and_<is_default_constructible<_Tp>, 4170 : public __and_<is_default_constructible<_Tp>, 14714 is_default_constructible<_U1>, 14715 is_default_constructible<_U2>, [all...] |