/third_party/boost/libs/hana/test/_include/laws/ |
D | logical.hpp | 57 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/ |
D | and.cpp | 21 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/ |
D | and_.rst | 1 .. 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/ |
D | logical.cpp | 25 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/ |
D | is_combinable.hpp | 60 (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 …]
|
D | is_interval.hpp | 71 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));
|
D | is_discrete.hpp | 39 (mpl::and_ 44 mpl::and_ 49 , mpl::and_
|
D | is_asymmetric_interval.hpp | 20 value = (mpl::and_< 32 value = (mpl::and_< 43 value = (mpl::and_<
|
/third_party/boost/boost/hof/detail/ |
D | and.hpp | 31 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/ |
D | element_map.hpp | 236 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/ |
D | graph_mutability_traits.hpp | 140 : 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/ |
D | logical.cpp | 45 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/ |
D | associated_value.hpp | 20 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/ |
D | labeled_graph_traits.hpp | 135 : 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/ |
D | check_call.hpp | 190 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/ |
D | and.hpp | 16 #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/ |
D | copy.hpp | 49 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/ |
D | copy.hpp | 49 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/ |
D | template_util_unittest.cc | 94 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/ |
D | and_n.hpp | 39 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/ |
D | and.hpp | 48 struct and_ struct 58 , and_ 66 , and_
|
/third_party/boost/boost/mpl/aux_/preprocessed/mwcw/ |
D | and.hpp | 48 struct and_ struct 58 , and_ 66 , and_
|
/third_party/boost/boost/mpl/aux_/preprocessed/gcc/ |
D | and.hpp | 48 struct and_ struct 58 , and_ 66 , and_
|
/third_party/boost/boost/mpl/aux_/preprocessed/dmc/ |
D | and.hpp | 48 struct and_ struct 58 , and_ 66 , and_
|
/third_party/boost/boost/mpl/aux_/preprocessed/bcc/ |
D | and.hpp | 48 struct and_ struct 58 , and_ 66 , and_
|