Home
last modified time | relevance | path

Searched refs:and_ (Results 1 – 25 of 285) sorted by relevance

12345678910>>...12

/third_party/boost/libs/hana/test/_include/laws/
Dlogical.hpp57 hana::and_(a, hana::and_(b, c)), in TestLogical()
58 hana::and_(hana::and_(a, b), c) in TestLogical()
66 hana::and_(a, b) ^iff^ hana::and_(b, a) in TestLogical()
71 hana::or_(a, hana::and_(a, b)), a in TestLogical()
74 hana::and_(a, hana::or_(a, b)), a in TestLogical()
81 hana::and_(t, a), a in TestLogical()
93 hana::or_(a, hana::and_(b, c)), in TestLogical()
94 hana::and_(hana::or_(a, b), hana::or_(a, c)) in TestLogical()
97 hana::and_(a, hana::or_(b, c)), in TestLogical()
98 hana::or_(hana::and_(a, b), hana::and_(a, c)) in TestLogical()
[all …]
/third_party/boost/libs/fusion/test/support/
Dand.cpp21 BOOST_MPL_ASSERT((and_<>));
22 BOOST_MPL_ASSERT_NOT((and_<false_type>));
23 BOOST_MPL_ASSERT((and_<true_type>));
24 BOOST_MPL_ASSERT_NOT((and_<true_type, false_type>));
25 BOOST_MPL_ASSERT((and_<true_type, true_type>));
26 BOOST_MPL_ASSERT_NOT((and_<true_type, true_type, false_type>));
27 BOOST_MPL_ASSERT((and_<true_type, true_type, true_type>));
28 BOOST_MPL_ASSERT((and_<true_type, mpl::true_>));
/third_party/boost/libs/mpl/doc/src/refmanual/
Dand_.rst1 .. Metafunctions/Logical Operations//and_ |10
56 typedef and_<f1,f2,\ |...|\ ,f\ *n*\>::type r;
72 typedef and_<f1,f2,\ |...|\ ,f\ *n*\> r;
82 struct r : and_<f1,f2,\ |...|\ ,f\ *n*\>::type {};
92 BOOST_MPL_ASSERT(( and_< true\_,true\_ > ));
93 BOOST_MPL_ASSERT_NOT(( and_< false\_,true\_ > ));
94 BOOST_MPL_ASSERT_NOT(( and_< true\_,false\_ > ));
95 BOOST_MPL_ASSERT_NOT(( and_< false\_,false\_ > ));
96 BOOST_MPL_ASSERT_NOT(( and_< false\_,unknown > )); // OK
97 BOOST_MPL_ASSERT_NOT(( and_< false\_,unknown,unknown > )); // OK too
/third_party/boost/libs/mpl/test/
Dlogical.cpp25 MPL_ASSERT(( mpl::and_< true_,true_ > )); in MPL_TEST_CASE()
26 MPL_ASSERT_NOT(( mpl::and_< false_,true_ > )); in MPL_TEST_CASE()
27 MPL_ASSERT_NOT(( mpl::and_< true_,false_ > )); in MPL_TEST_CASE()
28 MPL_ASSERT_NOT(( mpl::and_< false_,false_ > )); in MPL_TEST_CASE()
29 MPL_ASSERT_NOT(( mpl::and_< false_,unknown > )); in MPL_TEST_CASE()
30 MPL_ASSERT_NOT(( mpl::and_< false_,unknown,unknown > )); in MPL_TEST_CASE()
/third_party/boost/boost/icl/type_traits/
Dis_combinable.hpp60 (mpl::and_<is_key_compare_equal<LeftT, RightT>,
72 (mpl::and_<
87 (mpl::and_<
252 mpl::and_<is_interval_set<Type>,
254 , mpl::and_<is_interval_map<Type>,
265 (mpl::and_<
293 (mpl::and_
310 (mpl::and_
327 (mpl::and_
478 (mpl::and_
[all …]
Dis_interval.hpp71 value = (mpl::and_< has_static_bounds<Type>
81 value = (mpl::and_< has_static_bounds<Type>
121 value = (mpl::and_< is_static_closed<Type>
131 value = (mpl::and_< is_static_open<Type>
141 value = (mpl::and_<is_static_right_open<Type>, is_continuous<domain_type> >::value));
149 value = (mpl::and_<is_static_left_open<Type>, is_continuous<domain_type> >::value));
Dis_discrete.hpp39 (mpl::and_
44 mpl::and_
49 , mpl::and_
Dis_asymmetric_interval.hpp20 value = (mpl::and_<
32 value = (mpl::and_<
43 value = (mpl::and_<
/third_party/boost/boost/hof/detail/
Dand.hpp31 struct and_;
34 struct and_<T, Ts...> struct
35 : std::integral_constant<bool, (T::value && and_<Ts...>::value)>
39 struct and_<> struct
47 BOOST_HOF_USING(and_, std::is_same<bool_seq<Ts::value...>, bool_seq<(Ts::value, true)...>>);
/third_party/boost/boost/icl/concept/
Delement_map.hpp236 inline typename enable_if<mpl::and_<is_element_map<Type>, is_total<Type> >, Type>::type&
244 inline typename enable_if<mpl::and_<is_element_map<Type>, mpl::not_<is_total<Type> > >, Type>::type&
269 inline typename enable_if<mpl::and_<is_element_map<Type>, is_total<Type> >, Type>::type&
277 inline typename enable_if<mpl::and_<is_element_map<Type>, mpl::not_<is_total<Type> > >, Type>::type&
304 inline typename enable_if< mpl::and_< is_element_map<Type>
313 inline typename enable_if< mpl::and_< is_element_map<Type>
322 inline typename enable_if< mpl::and_< is_element_map<Type>
334 inline typename enable_if< mpl::and_< is_element_map<Type>
345 inline typename enable_if< mpl::and_< is_element_map<Type>
367 inline typename enable_if< mpl::and_< is_element_map<Type>
[all …]
/third_party/boost/boost/graph/
Dgraph_mutability_traits.hpp140 : mpl::and_< graph_has_add_vertex< Graph >, graph_has_remove_vertex< Graph > >
146 : mpl::and_< graph_has_add_vertex_with_property< Graph >,
153 : mpl::and_< graph_has_add_edge< Graph >, graph_has_remove_edge< Graph > >
159 : mpl::and_< graph_has_add_edge_with_property< Graph >,
166 : mpl::and_< is_mutable_vertex_graph< Graph >, is_mutable_edge_graph< Graph > >
172 : mpl::and_< is_mutable_vertex_property_graph< Graph >,
/third_party/boost/libs/hana/test/concept/constant/
Dlogical.cpp45 hana::and_(true_), in main()
49 hana::and_(false_), in main()
54 hana::and_(true_, true_), in main()
58 hana::and_(true_, false_), in main()
62 hana::and_(false_, invalid{}), in main()
67 hana::and_(true_, true_, true_), in main()
71 hana::and_(true_, true_, false_), in main()
75 hana::and_(true_, false_, invalid{}), in main()
79 hana::and_(false_, invalid{}, invalid{}), in main()
/third_party/boost/boost/icl/detail/
Dassociated_value.hpp20 typename enable_if< mpl::and_< is_key_compare_equal<Type,CoType>
21 , mpl::and_<is_map<Type>, is_map<CoType> > >,
30 typename enable_if< mpl::and_< is_key_compare_equal<Type,CoType>
31 , mpl::not_<mpl::and_<is_map<Type>, is_map<CoType> > > >,
/third_party/boost/boost/graph/detail/
Dlabeled_graph_traits.hpp135 : mpl::and_< graph_has_add_vertex_by_label< Graph >,
142 : mpl::and_< graph_has_add_vertex_by_label< Graph >,
149 : mpl::and_< graph_has_add_edge_by_label< Graph >,
156 : mpl::and_< graph_has_add_edge_by_label< Graph >,
163 : mpl::and_< is_labeled_mutable_vertex_graph< Graph >,
170 : mpl::and_< is_labeled_mutable_vertex_property_graph< Graph >,
/third_party/boost/boost/type_erasure/detail/
Dcheck_call.hpp190 struct and_;
193 struct and_<T1, T...> : boost::mpl::eval_if_c<T1::type::value, and_<T...>, boost::mpl::false_>::typ… struct
196 struct and_<T1> : T1::type {}; struct
199 struct and_<> : boost::mpl::true_ {}; struct
203 typedef typename ::boost::type_erasure::detail::and_<
227 typedef typename ::boost::mpl::and_< \
/third_party/boost/boost/fusion/support/detail/
Dand.hpp16 #error fusion::detail::and_ requires variadic templates
40 struct and_ : and_impl1<Cond::value...> {}; struct
43 struct and_ : integral_constant<bool, ((bool)Cond::value && ...)> {};
/third_party/boost/boost/compute/algorithm/
Dcopy.hpp49 mpl::and_<
108 mpl::and_< in dispatch_copy_async()
135 mpl::and_< in dispatch_copy_async()
186 mpl::and_< in dispatch_copy()
210 mpl::and_< in dispatch_copy()
297 mpl::and_< in dispatch_copy()
372 mpl::and_< in dispatch_copy_async()
399 mpl::and_< in dispatch_copy_async()
466 mpl::and_< in dispatch_copy()
494 mpl::and_< in dispatch_copy()
[all …]
/third_party/boost/libs/compute/include/boost/compute/algorithm/
Dcopy.hpp49 mpl::and_<
108 mpl::and_< in dispatch_copy_async()
135 mpl::and_< in dispatch_copy_async()
186 mpl::and_< in dispatch_copy()
210 mpl::and_< in dispatch_copy()
297 mpl::and_< in dispatch_copy()
372 mpl::and_< in dispatch_copy_async()
399 mpl::and_< in dispatch_copy_async()
466 mpl::and_< in dispatch_copy()
494 mpl::and_< in dispatch_copy()
[all …]
/third_party/protobuf/src/google/protobuf/stubs/
Dtemplate_util_unittest.cc94 value = and_<true_, true_>::value; in TEST()
97 value = and_<true_, false_>::value; in TEST()
100 value = and_<false_, true_>::value; in TEST()
103 value = and_<false_, false_>::value; in TEST()
/third_party/boost/boost/proto/detail/
Dand_n.hpp39 struct BOOST_PP_CAT(and_, N) in BOOST_PP_CAT() argument
44 : BOOST_PP_CAT(and_, BOOST_PP_DEC(N))<
52 struct BOOST_PP_CAT(and_, N)<false, BOOST_PP_ENUM_PARAMS(BOOST_PP_DEC(N), P)> in BOOST_PP_CAT() argument
59 struct _and_impl<proto::and_<BOOST_PP_ENUM_PARAMS(N, G)>, Expr, State, Data>
/third_party/boost/boost/mpl/aux_/preprocessed/no_ttp/
Dand.hpp48 struct and_ struct
58 , and_
66 , and_
/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/
Dand.hpp48 struct and_ struct
58 , and_
66 , and_
/third_party/boost/boost/mpl/aux_/preprocessed/gcc/
Dand.hpp48 struct and_ struct
58 , and_
66 , and_
/third_party/boost/boost/mpl/aux_/preprocessed/dmc/
Dand.hpp48 struct and_ struct
58 , and_
66 , and_
/third_party/boost/boost/mpl/aux_/preprocessed/bcc/
Dand.hpp48 struct and_ struct
58 , and_
66 , and_

12345678910>>...12