Home
last modified time | relevance | path

Searched refs:conjunction (Results 1 – 25 of 436) sorted by relevance

12345678910>>...18

/third_party/boost/libs/type_traits/doc/
Dconjunction.qbk10 [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/
Dconjunction_test.cpp21 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/
Dconjunction.hpp22 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
Dis_unscoped_enum.hpp21 : conjunction<is_enum<T>, is_convertible<T, int> >::type { };
Dis_scoped_enum.hpp22 : conjunction<is_enum<T>, negation<is_convertible<T, int> > >::type { };
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
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/abseil-cpp/absl/status/
Dstatusor.h221 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/
Duniform_helper.h102 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/
Duniform_helper.h102 absl::conjunction<
113 absl::conjunction<
133 absl::conjunction<
144 absl::conjunction<
155 absl::conjunction<
166 absl::conjunction<
/third_party/boost/boost/asio/detail/
Dtype_traits.hpp140 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/
Dtype_traits.hpp140 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/
DSkTLogic.h26 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/
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 …]
/third_party/abseil-cpp/absl/types/
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 …]
/third_party/json/include/nlohmann/detail/meta/
Dtype_traits.hpp384 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/
Dcef_template_util.h239 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/
DREADME.md28 conjunction: 'or',
31 conjunction: 'and',
81 conjunction: 'and',
84 conjunction: 'and',
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dunordered_map_members_test.h39 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
42 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
Dunordered_set_members_test.h38 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
41 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
/third_party/abseil-cpp/absl/container/internal/
Dunordered_set_members_test.h38 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
41 EXPECT_TRUE((absl::conjunction< in TYPED_TEST_P()
Dunordered_map_members_test.h39 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/
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<std::is_copy_constructible<T>...>>,
[all …]
/third_party/abseil-cpp/absl/types/internal/
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<std::is_copy_constructible<T>...>>,
[all …]
/third_party/iptables/extensions/
Dlibxt_recent.man43 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/
DOES_depth_texture_cube_map.txt80 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

12345678910>>...18