Home
last modified time | relevance | path

Searched refs:conjunction (Results 1 - 25 of 40) sorted by relevance

12

/third_party/skia/third_party/externals/abseil-cpp/absl/status/
H A Dstatusor.h231 absl::conjunction<
244 absl::conjunction<
258 absl::conjunction<
270 absl::conjunction<
302 absl::conjunction<
318 absl::conjunction<
345 absl::conjunction<
359 absl::conjunction<
373 absl::conjunction<
405 typename = typename std::enable_if<absl::conjunction<
[all...]
/third_party/json/include/nlohmann/detail/meta/
H A Dtype_traits.hpp188 // https://en.cppreference.com/w/cpp/types/conjunction
189 template<class...> struct conjunction : std::true_type { }; struct
190 template<class B> struct conjunction<B> : B { }; struct
192 struct conjunction<B, Bn...> struct
193 : std::conditional<static_cast<bool>(B::value), conjunction<Bn...>, B>::type {};
206 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {};
210 : conjunction<is_default_constructible<T1>, is_default_constructible<T2>> {};
214 : conjunction<is_default_constructible<Ts>...> {};
218 : conjunction<is_default_constructible<Ts>...> {};
365 conjunction <
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Duniform_helper.h102 absl::conjunction<
113 absl::conjunction<
133 absl::conjunction<
144 absl::conjunction<
155 absl::conjunction<
166 absl::conjunction<
H A Duniform_helper_test.cc217 absl::conjunction< in CheckArgsInferType()
/third_party/skia/include/private/
H A DSkTLogic.h26 template<typename...> struct conjunction : std::true_type { }; struct
27 template<typename T> struct conjunction<T> : T { }; struct
29 struct conjunction<T, Ts...> : std::conditional<bool(T::value), conjunction<Ts...>, T>::type { }; struct
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
H A Doptional.h149 absl::enable_if_t<absl::conjunction<
171 absl::conjunction<absl::negation<std::is_same<
184 absl::conjunction<absl::negation<std::is_same<
197 absl::conjunction<
214 absl::conjunction<
231 absl::conjunction<
249 absl::conjunction<
287 typename = typename std::enable_if<absl::conjunction<
291 absl::conjunction<std::is_scalar<T>,
301 typename = typename std::enable_if<absl::conjunction<
[all...]
H A Dvariant.h138 absl::conjunction<std::is_move_constructible<Ts>...,
461 static_assert(absl::conjunction<std::is_object<T0>,
467 static_assert(absl::conjunction<negation<std::is_array<T0> >,
470 static_assert(absl::conjunction<std::is_nothrow_destructible<T0>,
705 absl::conjunction< in noexcept()
H A Dany.h237 absl::enable_if_t<absl::conjunction<
250 absl::conjunction<std::is_copy_constructible<VT>,
275 absl::enable_if_t<absl::conjunction<
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
H A Dvariant.h1110 absl::conjunction<is_detected_convertible<bool, EqualResult, T>...>::value,
1115 absl::enable_if_t<absl::conjunction<is_detected_convertible<
1121 absl::enable_if_t<absl::conjunction<is_detected_convertible<
1127 absl::enable_if_t<absl::conjunction<is_detected_convertible<
1133 absl::enable_if_t<absl::conjunction<is_detected_convertible<
1139 absl::enable_if_t<absl::conjunction<is_detected_convertible<
1174 : public absl::conjunction<CanAccept<Us>...> {};
1237 absl::negation<absl::conjunction<std::is_move_constructible<T>...>>,
1238 absl::conjunction<IsTriviallyMoveConstructible<T>...>>::value,
1245 absl::negation<absl::conjunction<st
[all...]
H A Dconformance_testing_helpers.h194 typename std::enable_if<absl::conjunction<std::is_same<
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dunordered_map_members_test.h39 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
42 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
H A Dunordered_set_members_test.h38 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
41 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
H A Dcompressed_tuple.h183 bool, absl::conjunction<
246 absl::conjunction<
H A Dlayout.h345 static_assert(absl::conjunction<IsLegalElementType<Elements>...>::value,
688 absl::conjunction<internal_layout::IsLegalElementType<Ts>...>::value,
H A Dbtree_container.h357 absl::conjunction<
376 absl::conjunction<
638 absl::conjunction<
654 absl::conjunction<
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Ddistributions_test.cc80 absl::conjunction< in CheckArgsInferType()
86 absl::conjunction< in CheckArgsInferType()
121 absl::conjunction< in CheckArgsReturnExpectedType()
128 absl::conjunction< in CheckArgsReturnExpectedType()
/third_party/googletest/googlemock/include/gmock/
H A Dgmock-actions.h275 struct conjunction : std::true_type {}; struct
279 struct conjunction<P1> : P1 {}; struct
284 struct conjunction<P1, Ps...> struct
285 : std::conditional<bool(P1::value), conjunction<Ps...>, P1>::type {};
425 using IsDirectlyCompatible = internal::conjunction<
435 using IsCompatibleAfterIgnoringArguments = internal::conjunction<
448 internal::conjunction<
465 internal::conjunction<
929 typename = typename std::enable_if<conjunction<
940 typename = typename std::enable_if<conjunction<
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/meta/
H A Dtype_traits.h131 // of a `conjunction`. This implementation opts to instead be lazy in the same
212 // conjunction
220 // `std::conjunction` metafunction.
222 struct conjunction : std::true_type {}; struct
225 struct conjunction<T, Ts...> struct
226 : std::conditional<T::value, conjunction<Ts...>, T>::type {};
229 struct conjunction<T> : T {}; struct
H A Dtype_traits_test.cc120 EXPECT_TRUE(absl::conjunction<>::value); in TEST()
121 EXPECT_TRUE(absl::conjunction<std::true_type>::value); in TEST()
122 EXPECT_TRUE((absl::conjunction<std::true_type, std::true_type>::value)); in TEST()
123 EXPECT_FALSE((absl::conjunction<std::true_type, std::false_type>::value)); in TEST()
124 EXPECT_FALSE((absl::conjunction<std::false_type, std::true_type>::value)); in TEST()
125 EXPECT_FALSE((absl::conjunction<std::false_type, std::false_type>::value)); in TEST()
138 (absl::conjunction<std::true_type, std::false_type, Dummy>::value)); in TEST()
140 absl::conjunction<std::true_type, MyFalseType, in TEST()
144 absl::conjunction<std::true_type, MyTrueType>>::value)); in TEST()
/third_party/node/deps/npm/node_modules/spdx-expression-parse/
H A Dparse.js124 conjunction: operator.toLowerCase(),
/third_party/node/lib/internal/main/
H A Dprint_help.js80 'certificates when used in conjunction with --use-openssl-ca' }],
82 'when used in conjunction with --use-openssl-ca' }],
/third_party/googletest/googlemock/test/
H A Dgmock-actions_test.cc101 // "std::conjunction should evaluate to a type that inherits from the first
111 static_assert(std::is_base_of<std::true_type, internal::conjunction<>>::value, in TEST()
116 std::is_base_of<MyFalse<0>, internal::conjunction<MyFalse<0>>>::value, in TEST()
120 std::is_base_of<MyTrue<0>, internal::conjunction<MyTrue<0>>>::value, ""); in TEST()
124 std::is_base_of<MyFalse<1>, internal::conjunction<MyTrue<0>, MyFalse<1>, in TEST()
129 std::is_base_of<MyFalse<1>, internal::conjunction<MyTrue<0>, MyFalse<1>, in TEST()
137 std::is_base_of<MyFalse<1>, internal::conjunction<MyTrue<0>, MyFalse<1>, in TEST()
143 std::is_base_of<MyTrue<2>, internal::conjunction<MyTrue<0>, MyTrue<1>, in TEST()
/third_party/node/deps/npm/lib/utils/
H A Dsbom-cyclonedx.js162 // If license is a conjunction, use the expression field
163 } else if (parsedLicense?.conjunction) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAny.h65 llvm::conjunction<
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/
H A Dhash.h383 typename std::enable_if<absl::conjunction<is_hashable<Ts>...>::value, H>::type
583 typename std::enable_if<conjunction<is_hashable<T>...>::value, H>::type
733 conjunction<std::is_integral<T>, is_uniquely_represented<T>>;

Completed in 23 milliseconds

12