/third_party/skia/third_party/externals/abseil-cpp/absl/status/ |
H A D | statusor.h | 231 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 D | type_traits.hpp | 188 // 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 D | uniform_helper.h | 102 absl::conjunction< 113 absl::conjunction< 133 absl::conjunction< 144 absl::conjunction< 155 absl::conjunction< 166 absl::conjunction<
|
H A D | uniform_helper_test.cc | 217 absl::conjunction< in CheckArgsInferType()
|
/third_party/skia/include/private/ |
H A D | SkTLogic.h | 26 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 D | optional.h | 149 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 D | variant.h | 138 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 D | any.h | 237 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 D | variant.h | 1110 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 D | conformance_testing_helpers.h | 194 typename std::enable_if<absl::conjunction<std::is_same<
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
H A D | unordered_map_members_test.h | 39 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P() 42 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
|
H A D | unordered_set_members_test.h | 38 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P() 41 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
|
H A D | compressed_tuple.h | 183 bool, absl::conjunction< 246 absl::conjunction<
|
H A D | layout.h | 345 static_assert(absl::conjunction<IsLegalElementType<Elements>...>::value, 688 absl::conjunction<internal_layout::IsLegalElementType<Ts>...>::value,
|
H A D | btree_container.h | 357 absl::conjunction< 376 absl::conjunction< 638 absl::conjunction< 654 absl::conjunction<
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | distributions_test.cc | 80 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 D | gmock-actions.h | 275 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 D | type_traits.h | 131 // 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 D | type_traits_test.cc | 120 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 D | parse.js | 124 conjunction: operator.toLowerCase(),
|
/third_party/node/lib/internal/main/ |
H A D | print_help.js | 80 '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 D | gmock-actions_test.cc | 101 // "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 D | sbom-cyclonedx.js | 162 // 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 D | Any.h | 65 llvm::conjunction<
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
H A D | hash.h | 383 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>>;
|