/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
if.hpp | 55 struct if_ struct in namespace:boost::mpl 72 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,if_,(T1,T2,T3)) 119 struct if_ 126 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,if_,(C_,T1,T2)) 131 BOOST_MPL_AUX_NA_SPEC(3, if_)
|
eval_if.hpp | 37 typedef typename if_<C,F1,F2>::type f_; 40 : if_<C,F1,F2>::type
|
tag.hpp | 33 : if_<
|
advance.hpp | 39 typedef typename if_< backward_, negate<N>, N >::type offset_; 41 typedef typename if_<
|
is_sequence.hpp | 65 : if_<
|
iter_fold_if.hpp | 75 , if_< is_na<BackwardOp>, always<false_>, always<true_> >
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/ |
conversion_traits.hpp | 45 typedef typename mpl::if_< is_arithmetic<S>, S, S const&>::type argument_type ; 47 typedef typename mpl::if_<subranged,S,T>::type supertype ; 48 typedef typename mpl::if_<subranged,T,S>::type subtype ; 90 typedef typename mpl::if_<is_trivial,trivial_imp,non_trivial_imp>::type type ;
|
bounds.hpp | 51 typedef typename mpl::if_<is_int,impl_int,impl_float>::type type ;
|
meta.hpp | 77 typedef mpl::if_<is_case2,Case2Type,DefaultType> choose_2_3Q ; 110 typedef mpl::if_<caseFT,FT,FF> choose_FT_FF_Q ;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/ |
O1_size_impl.hpp | 47 : if_< 55 typedef typename if_< 62 (if_<
|
inserter_algorithm.hpp | 52 : if_< has_push_back< typename clear<P1>::type> \ 77 : if_< has_push_back<P1> \ 101 : if_< has_push_back<P1> \ 130 : if_< has_push_back<P1> \
|
numeric_op.hpp | 209 : aux::msvc_eti_base< typename if_< 211 : if_<
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/ |
promotion.hpp | 71 typedef typename mpl::if_<is_integral<T>, double, T>::type type; 73 // These full specialisations reduce mpl::if_ usage and speed up 87 typedef typename mpl::if_< 89 typename mpl::if_< typename mpl::or_<is_same<long double, T1P>, is_same<long double, T2P> >::type, // either long double? 91 typename mpl::if_< typename mpl::or_<is_same<double, T1P>, is_same<double, T2P> >::type, // either double? 97 typename mpl::if_< typename mpl::and_<mpl::not_<is_floating_point<T2P> >, ::boost::is_convertible<T1P, T2P> >, T2P, T1P>::type>::type type; 99 // These full specialisations reduce mpl::if_ usage and speed up
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
make_unsigned.hpp | 62 typename mpl::if_< 65 typename mpl::if_< 68 typename mpl::if_< 71 typename mpl::if_< 113 typedef typename mpl::if_< 120 typedef typename mpl::if_<
|
/external/chromium_org/third_party/cld/base/ |
template_util.h | 57 // if_ is a templatized conditional statement. 58 // if_<cond, A, B> is a compile time evaluation of cond. 59 // if_<>::type contains A if cond is true, B otherwise. 61 struct if_{ struct in namespace:base 66 struct if_<false, A, B> { struct in namespace:base
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
template_util.h | 94 // if_ is a templatized conditional statement. 95 // if_<cond, A, B> is a compile time evaluation of cond. 96 // if_<>::type contains A if cond is true, B otherwise. 98 struct if_{ struct in namespace:google::protobuf::internal 103 struct if_<false, A, B> { struct in namespace:google::protobuf::internal
|
template_util_unittest.cc | 64 typedef if_<true, true_type, false_type>::type if_true; 67 typedef if_<false, true_type, false_type>::type if_false;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/ |
indirect_traits.hpp | 112 : mpl::if_< 213 typedef typename mpl::if_< 223 typedef typename mpl::if_< 233 typedef typename mpl::if_< 243 typedef typename mpl::if_< 261 : mpl::if_<is_reference<T>, is_reference_to_function_aux<T>, mpl::bool_<false> >::type 277 : mpl::if_<is_pointer<T>, is_pointer_to_function_aux<T>, mpl::bool_<false> >::type 419 : mpl::if_<is_member_function_pointer<T>, inner_yes_type, inner_no_type> 438 : mpl::if_<
|
reference_content.hpp | 99 : mpl::if_<
|
iterator.hpp | 286 : mpl::if_< 299 : mpl::if_< 373 : mpl::if_< 382 : mpl::if_< 389 , mpl::if_< 404 : mpl::if_< 420 typename mpl::if_<
|
lcast_precision.hpp | 50 typedef BOOST_DEDUCED_TYPENAME boost::mpl::if_< 108 typedef BOOST_DEDUCED_TYPENAME boost::mpl::if_<
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/concept/detail/ |
general.hpp | 51 : mpl::if_<
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/ |
converter_policies.hpp | 33 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ; 55 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ; 74 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ; 93 typedef typename mpl::if_< is_arithmetic<S>,S,S const&>::type argument_type ;
|
/external/clang/test/SemaTemplate/ |
instantiate-function-params.cpp | 5 template<typename T1> struct if_ { struct 20 template <class Model> struct requirement_<void(*)(Model)> : if_< not_satisfied<Model> >::type { // expected-note 5{{in instantiation}}
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/ |
facade_iterator_category.hpp | 96 , mpl::if_< 173 typedef typename mpl::if_<
|