/third_party/boost/libs/type_traits/doc/ |
D | conjunction.qbk | 10 [section:conjunction conjunction] 13 struct conjunction; 19 __header `#include <boost/type_traits/conjunction.hpp>` 21 [all_compilers] In the absence of variadic-template support, `conjunction` has 28 [:`conjunction<>` inherits from `__true_type`.] 30 [:`conjunction<Int<1> >` inherits from `Int<1>`.] 32 [:`conjunction<Int<1>, Int<2>, Int<3> >` inherits from `Int<3>`.] 34 [:`conjunction<Int<1>, Int<0>, Int<3> >` inherits from `Int<0>`.]
|
/third_party/boost/libs/type_traits/test/ |
D | conjunction_test.cpp | 21 TT_TEST_BEGIN(conjunction) 23 BOOST_CHECK_INTEGRAL_CONSTANT((::tt::conjunction<Int<2>, Int<4> >::value), 4); 24 BOOST_CHECK_INTEGRAL_CONSTANT((::tt::conjunction<Int<0>, Int<4> >::value), 0); 27 BOOST_CHECK_INTEGRAL_CONSTANT((::tt::conjunction<Int<2>, Int<4>, Int<6>, 29 BOOST_CHECK_INTEGRAL_CONSTANT((::tt::conjunction<Int<2>, Int<0>, Int<4>, 31 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::conjunction<Int<4> >::value, 4); 32 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::conjunction<>::value, true);
|
/third_party/boost/boost/type_traits/ |
D | conjunction.hpp | 22 struct conjunction struct 26 struct conjunction<T> struct 30 struct conjunction<T, U...> struct 31 : conditional<bool(T::value), conjunction<U...>, T>::type { }; 34 struct conjunction
|
D | is_unscoped_enum.hpp | 21 : conjunction<is_enum<T>, is_convertible<T, int> >::type { };
|
D | is_scoped_enum.hpp | 22 : conjunction<is_enum<T>, negation<is_convertible<T, int> > >::type { };
|
/third_party/skia/third_party/externals/abseil-cpp/absl/status/ |
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/abseil-cpp/absl/status/ |
D | statusor.h | 221 absl::conjunction< 234 absl::conjunction< 248 absl::conjunction< 260 absl::conjunction< 292 absl::conjunction< 308 absl::conjunction< 335 absl::conjunction< 349 absl::conjunction< 363 absl::conjunction< 395 typename = typename std::enable_if<absl::conjunction< [all …]
|
/third_party/abseil-cpp/absl/random/internal/ |
D | uniform_helper.h | 102 absl::conjunction< 113 absl::conjunction< 133 absl::conjunction< 144 absl::conjunction< 155 absl::conjunction< 166 absl::conjunction<
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
D | uniform_helper.h | 102 absl::conjunction< 113 absl::conjunction< 133 absl::conjunction< 144 absl::conjunction< 155 absl::conjunction< 166 absl::conjunction<
|
/third_party/boost/boost/asio/detail/ |
D | type_traits.hpp | 140 template <typename...> struct conjunction : true_type {}; struct 141 template <typename T> struct conjunction<T> : T {}; struct 142 template <typename Head, typename... Tail> struct conjunction<Head, Tail...> : struct 143 conditional<Head::value, conjunction<Tail...>, Head>::type {};
|
/third_party/boost/libs/asio/include/boost/asio/detail/ |
D | type_traits.hpp | 140 template <typename...> struct conjunction : true_type {}; struct 141 template <typename T> struct conjunction<T> : T {}; struct 142 template <typename Head, typename... Tail> struct conjunction<Head, Tail...> : struct 143 conditional<Head::value, conjunction<Tail...>, Head>::type {};
|
/third_party/skia/include/private/ |
D | SkTLogic.h | 26 template<typename...> struct conjunction : std::true_type { }; struct 27 template<typename T> struct conjunction<T> : T { }; 29 struct conjunction<T, Ts...> : std::conditional<bool(T::value), conjunction<Ts...>, T>::type { };
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
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 …]
|
/third_party/abseil-cpp/absl/types/ |
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 …]
|
/third_party/json/include/nlohmann/detail/meta/ |
D | type_traits.hpp | 384 template<class...> struct conjunction : std::true_type { }; struct 385 template<class B1> struct conjunction<B1> : B1 { }; struct 387 struct conjunction<B1, Bn...> struct 388 : std::conditional<bool(B1::value), conjunction<Bn...>, B1>::type {}; 394 struct is_constructible_tuple<T1, std::tuple<Args...>> : conjunction<std::is_constructible<T1, Args…
|
/third_party/cef/include/base/ |
D | cef_template_util.h | 239 struct conjunction : std::true_type {}; 242 struct conjunction<B1> : B1 {}; 245 struct conjunction<B1, Bn...> 246 : std::conditional_t<static_cast<bool>(B1::value), conjunction<Bn...>, B1> {
|
/third_party/node/deps/npm/node_modules/spdx-expression-parse/ |
D | README.md | 28 conjunction: 'or', 31 conjunction: 'and', 81 conjunction: 'and', 84 conjunction: 'and',
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | unordered_map_members_test.h | 39 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P() 42 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
|
D | unordered_set_members_test.h | 38 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P() 41 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
|
/third_party/abseil-cpp/absl/container/internal/ |
D | unordered_set_members_test.h | 38 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P() 41 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
|
D | unordered_map_members_test.h | 39 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P() 42 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
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<std::is_copy_constructible<T>...>>, [all …]
|
/third_party/abseil-cpp/absl/types/internal/ |
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<std::is_copy_constructible<T>...>>, [all …]
|
/third_party/iptables/extensions/ |
D | libxt_recent.man | 43 This option must be used in conjunction with one of \fB\-\-rcheck\fP or 48 This option can only be used in conjunction with \fB\-\-seconds\fP. 53 This option must be used in conjunction with one of \fB\-\-rcheck\fP or 63 This option may only be used in conjunction with one of \fB\-\-rcheck\fP or
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_depth_texture_cube_map.txt | 80 Using this format in conjunction with any other <target> will result in 87 TEXTURE_2D. Using this format in conjunction with any other <target> will
|