Home
last modified time | relevance | path

Searched refs:boost (Results 1 – 25 of 526) sorted by relevance

12345678910>>...22

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
Dplaceholders.hpp30 static inline boost::arg<1> _1() { return boost::arg<1>(); } in _1()
31 static inline boost::arg<2> _2() { return boost::arg<2>(); } in _2()
32 static inline boost::arg<3> _3() { return boost::arg<3>(); } in _3()
33 static inline boost::arg<4> _4() { return boost::arg<4>(); } in _4()
34 static inline boost::arg<5> _5() { return boost::arg<5>(); } in _5()
35 static inline boost::arg<6> _6() { return boost::arg<6>(); } in _6()
36 static inline boost::arg<7> _7() { return boost::arg<7>(); } in _7()
37 static inline boost::arg<8> _8() { return boost::arg<8>(); } in _8()
38 static inline boost::arg<9> _9() { return boost::arg<9>(); } in _9()
43 static boost::arg<1> _1;
[all …]
Dstorage.hpp32 namespace boost namespace
54 template<int I> struct storage1< boost::arg<I> >
56 explicit storage1( boost::arg<I> ) {} in storage1()
60 static boost::arg<I> a1_() { return boost::arg<I>(); } in a1_()
63 template<int I> struct storage1< boost::arg<I> (*) () >
65 explicit storage1( boost::arg<I> (*) () ) {} in storage1()
69 static boost::arg<I> a1_() { return boost::arg<I>(); } in a1_()
93 template<class A1, int I> struct storage2< A1, boost::arg<I> >: public storage1<A1>
97 storage2( A1 a1, boost::arg<I> ): storage1<A1>( a1 ) {} in storage2()
104 static boost::arg<I> a2_() { return boost::arg<I>(); } in a2_()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/detail/preprocessed/
Dnumeric_cast_traits_long_long.hpp9 namespace boost { namespace numeric { namespace
16 , boost::long_long_type
21 typedef Trunc<boost::long_long_type> rounding_policy;
28 , boost::ulong_long_type
33 typedef Trunc<boost::ulong_long_type> rounding_policy;
40 , boost::long_long_type
45 typedef Trunc<boost::long_long_type> rounding_policy;
52 , boost::ulong_long_type
57 typedef Trunc<boost::ulong_long_type> rounding_policy;
64 , boost::long_long_type
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
Dis_class.hpp39 namespace boost { namespace
58 template <class U> ::boost::type_traits::yes_type is_class_tester(void(U::*)(void));
59 template <class U> ::boost::type_traits::no_type is_class_tester(...);
66 (::boost::type_traits::ice_and<
67 sizeof(is_class_tester<T>(0)) == sizeof(::boost::type_traits::yes_type),
68 ::boost::type_traits::ice_not< ::boost::is_union<T>::value >::value
78 template <class U> static ::boost::type_traits::yes_type is_class_tester(void(U::*)(void));
79 template <class U> static ::boost::type_traits::no_type is_class_tester(...);
82 (::boost::type_traits::ice_and<
83 sizeof(is_class_tester<T>(0)) == sizeof(::boost::type_traits::yes_type),
[all …]
Dmake_unsigned.hpp31 namespace boost { namespace
39 …(::boost::type_traits::ice_or< ::boost::is_integral<T>::value, ::boost::is_enum<T>::value>::value)…
42 (::boost::type_traits::ice_not< ::boost::is_same<
48 (::boost::type_traits::ice_and<
49 ::boost::is_unsigned<T>::value,
50 ::boost::is_integral<T>::value,
51 ::boost::type_traits::ice_not< ::boost::is_same<t_no_cv, char>::value>::value,
52 ::boost::type_traits::ice_not< ::boost::is_same<t_no_cv, wchar_t>::value>::value,
53 ::boost::type_traits::ice_not< ::boost::is_same<t_no_cv, bool>::value>::value >::value),
56 (::boost::type_traits::ice_and<
[all …]
Dis_enum.hpp34 namespace boost { namespace
47 (::boost::type_traits::ice_or<
48 ::boost::is_class<T>::value
49 , ::boost::is_union<T>::value
61 …template <class U> static ::boost::type_traits::yes_type is_class_or_union_tester(void(U::*)(void)…
65 static ::boost::type_traits::no_type is_class_or_union_tester(...);
67 … bool, value = sizeof(is_class_or_union_tester(0)) == sizeof(::boost::type_traits::yes_type));
70 static ::boost::type_traits::no_type is_class_or_union_tester(...);
72 … bool, value = sizeof(is_class_or_union_tester<T>(0)) == sizeof(::boost::type_traits::yes_type));
98 …: public ::boost::is_convertible<typename boost::add_reference<T>::type,::boost::detail::int_conve…
[all …]
Dtype_with_alignment.hpp32 namespace boost { namespace
46 char, short, int, long, ::boost::long_long_type, float, double, long double \
55 #define BOOST_TT_HAS_ONE_T(D,Data,T) boost::detail::has_one_T< T >
170 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::max_align,true)
171 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<1> ,true)
172 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<2> ,true)
173 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<4> ,true)
174 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<8> ,true)
175 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<10> ,true)
176 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::detail::lower_alignment<16> ,true)
[all …]
Dis_convertible.hpp39 namespace boost { namespace
62 using ::boost::type_traits::yes_type;
63 using ::boost::type_traits::no_type;
82 enum { value = ::boost::is_void<To>::value };
106 static ::boost::type_traits::no_type BOOST_TT_DECL _m_check(...);
107 static ::boost::type_traits::yes_type BOOST_TT_DECL _m_check(T);
112 == sizeof(::boost::type_traits::yes_type);
128 static boost::type_traits::no_type _m_check(any_conversion ...);
129 static boost::type_traits::yes_type _m_check(T, int);
136 static bool const value = sizeof( boost::detail::checker<To>::_m_check(_m_from, 0) )
[all …]
Dis_pod.hpp29 namespace boost { namespace
42 (::boost::type_traits::ice_or<
43 ::boost::is_scalar<T>::value,
44 ::boost::is_void<T>::value,
66 (::boost::type_traits::ice_or<
67 ::boost::is_scalar<T>::value,
68 ::boost::is_void<T>::value,
77 typedef ::boost::type_traits::no_type type;
83 typedef ::boost::type_traits::yes_type type;
89 enum { is_pod = ::boost::is_POD<ArrayType>::value }; // MSVC workaround
[all …]
Dis_pointer.hpp43 namespace boost { namespace
72 (::boost::type_traits::ice_and<
73 ::boost::detail::is_pointer_helper<T>::value
74 , ::boost::type_traits::ice_not<
75 ::boost::is_member_pointer<T>::value
81 (::boost::type_traits::ice_and<
82 ::boost::detail::is_pointer_helper<typename remove_cv<T>::type>::value
83 , ::boost::type_traits::ice_not<
84 ::boost::is_member_pointer<T>::value
93 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_pointer,T,::boost::detail::is_pointer_impl<T>::value)
[all …]
Dis_const.hpp45 namespace boost { namespace
62 …BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<typename boost::remove_bounds<T…
64 BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<T*>::is_const);
77 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_const,T,::boost::detail::is_const_rvalue_filter<T>::value)
93 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T const,!(::boost::is_reference<T>::val…
94 BOOST_TT_AUX_BOOL_TRAIT_PARTIAL_SPEC1_1(typename T,is_const,T volatile const,!(::boost::is_referenc…
101 using ::boost::type_traits::yes_type;
102 using ::boost::type_traits::no_type;
109 : public ::boost::type_traits::false_result
120 sizeof(boost::detail::yes_type) == sizeof(boost::detail::is_const_tester(t))
[all …]
Dis_volatile.hpp42 namespace boost { namespace
49 …BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<typename boost::remove_bounds<T…
51 BOOST_STATIC_CONSTANT(bool, value = ::boost::detail::cv_traits_imp<T*>::is_volatile);
72 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_volatile,T,::boost::detail::is_volatile_rval_filter<T>::value)
89 using ::boost::type_traits::yes_type;
90 using ::boost::type_traits::no_type;
97 : public ::boost::type_traits::false_result
108 sizeof(boost::detail::yes_type) == sizeof(boost::detail::is_volatile_tester(t))
120 sizeof(boost::detail::yes_type) == sizeof(boost::detail::is_volatile_tester(&t))
144 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_volatile,T,::boost::detail::is_volatile_impl<T>::value)
Dis_member_pointer.hpp41 namespace boost { namespace
50 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_member_pointer,T,::boost::is_member_function_pointer<T>::value)
64 ::boost::type_traits::yes_type BOOST_TT_DECL is_member_pointer_tester(R T::*const volatile*);
65 ::boost::type_traits::no_type BOOST_TT_DECL is_member_pointer_tester(...);
69 : public ::boost::type_traits::false_result
81 (::boost::type_traits::ice_or<
82 (1 == sizeof(::boost::type_traits::is_mem_fun_pointer_tester(make_t()))),
91 ::boost::type_traits::ice_or<
92 ::boost::is_reference<T>::value
93 , ::boost::is_array<T>::value
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/detail/
Dcommon.hpp30 namespace boost namespace
66 …BOOST_STATIC_CONSTANT( bool, is_pair_ = sizeof( boost::range_detail::is_pair_impl( …
67 …BOOST_STATIC_CONSTANT( bool, is_char_ptr_ = sizeof( boost::range_detail::is_char_ptr_im…
68 …BOOST_STATIC_CONSTANT( bool, is_const_char_ptr_ = sizeof( boost::range_detail::is_const_char_…
69 …BOOST_STATIC_CONSTANT( bool, is_wchar_t_ptr_ = sizeof( boost::range_detail::is_wchar_t_ptr…
70 …BOOST_STATIC_CONSTANT( bool, is_const_wchar_t_ptr_ = sizeof( boost::range_detail::is_const_wchar…
71 …BOOST_STATIC_CONSTANT( bool, is_char_array_ = sizeof( boost::range_detail::is_char_array_…
72 …BOOST_STATIC_CONSTANT( bool, is_wchar_t_array_ = sizeof( boost::range_detail::is_wchar_t_arr…
73 …BOOST_STATIC_CONSTANT( bool, is_string_ = (boost::type_traits::ice_or<is_const_char_p…
74 BOOST_STATIC_CONSTANT( bool, is_array_ = boost::is_array<C>::value );
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
Dreplace.hpp32 namespace boost { namespace
64 return ::boost::algorithm::find_format_copy( in replace_range_copy()
67 ::boost::algorithm::range_finder(SearchRange), in replace_range_copy()
68 ::boost::algorithm::const_formatter(Format)); in replace_range_copy()
83 return ::boost::algorithm::find_format_copy( in replace_range_copy()
85 ::boost::algorithm::range_finder(SearchRange), in replace_range_copy()
86 ::boost::algorithm::const_formatter(Format)); in replace_range_copy()
106 ::boost::algorithm::find_format( in replace_range()
108 ::boost::algorithm::range_finder(SearchRange), in replace_range()
109 ::boost::algorithm::const_formatter(Format)); in replace_range()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
Diterator_concepts.hpp43 : boost::Assignable<Iterator>
44 , boost::CopyConstructible<Iterator>
47 … typedef BOOST_DEDUCED_TYPENAME boost::detail::iterator_traits<Iterator>::value_type value_type;
48 typedef BOOST_DEDUCED_TYPENAME boost::detail::iterator_traits<Iterator>::reference reference;
54 boost::ignore_unused_variable_warning(v); in BOOST_CONCEPT_USAGE()
62 … , typename ValueType = BOOST_DEDUCED_TYPENAME boost::detail::iterator_traits<Iterator>::value_type
65 : boost::CopyConstructible<Iterator>
78 … , typename ValueType = BOOST_DEDUCED_TYPENAME boost::detail::iterator_traits<Iterator>::value_type
95 typedef typename boost::detail::iterator_traits<Iterator>::value_type value_type;
100 boost::ignore_unused_variable_warning(r);
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
Dinteger_traits.hpp42 namespace boost { namespace
173 class integer_traits< ::boost::long_long_type>
174 : public std::numeric_limits< ::boost::long_long_type>,
175 public detail::integer_traits_base< ::boost::long_long_type, LLONG_MIN, LLONG_MAX>
179 class integer_traits< ::boost::ulong_long_type>
180 : public std::numeric_limits< ::boost::ulong_long_type>,
181 public detail::integer_traits_base< ::boost::ulong_long_type, 0, ULLONG_MAX>
187 …er_traits< ::boost::long_long_type> : public std::numeric_limits< ::boost::long_long_type>, pu…
189 class integer_traits< ::boost::ulong_long_type>
190 : public std::numeric_limits< ::boost::ulong_long_type>,
[all …]
Dstatic_assert.hpp51 namespace boost{ namespace
91 typedef ::boost::static_assert_test<\
92 sizeof(::boost::STATIC_ASSERTION_FAILURE< (bool)( B ) >)\
96 typedef ::boost::static_assert_test<\
97 sizeof(::boost::STATIC_ASSERTION_FAILURE< BOOST_STATIC_ASSERT_BOOL_CAST ( B ) >)>\
104 [ ::boost::STATIC_ASSERTION_FAILURE< BOOST_STATIC_ASSERT_BOOL_CAST( B ) >::value ]
110 typedef ::boost::static_assert_test<\
111 sizeof(::boost::STATIC_ASSERTION_FAILURE< \
119 sizeof(::boost::STATIC_ASSERTION_FAILURE< BOOST_STATIC_ASSERT_BOOL_CAST( B ) >) )
123 typedef ::boost::static_assert_test<\
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
Dfind_format_all.hpp21 namespace boost { namespace
54 input_iterator_type LastMatch=::boost::begin(Input); in find_format_all_copy_impl2()
62 … Output = std::copy( ::boost::begin(M.format_result()), ::boost::end(M.format_result()), Output ); in find_format_all_copy_impl2()
66 M=Finder( LastMatch, ::boost::end(Input) ); in find_format_all_copy_impl2()
70 Output = std::copy( LastMatch, ::boost::end(Input), Output ); in find_format_all_copy_impl2()
88 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) { in find_format_all_copy_impl()
89 return ::boost::algorithm::detail::find_format_all_copy_impl2( in find_format_all_copy_impl()
97 return std::copy( ::boost::begin(Input), ::boost::end(Input), Output ); in find_format_all_copy_impl()
128 input_iterator_type LastMatch=::boost::begin(Input); in find_format_all_copy_impl2()
137 insert( Output, ::boost::end(Output), LastMatch, M.begin() ); in find_format_all_copy_impl2()
[all …]
Dfind_format.hpp21 namespace boost { namespace
52 Output = std::copy( ::boost::begin(Input), ::boost::end(Input), Output ); in find_format_copy_impl2()
57 Output = std::copy( ::boost::begin(Input), ::boost::begin(M), Output ); in find_format_copy_impl2()
60 … Output = std::copy( ::boost::begin(M.format_result()), ::boost::end(M.format_result()), Output ); in find_format_copy_impl2()
62 Output = std::copy( M.end(), ::boost::end(Input), Output ); in find_format_copy_impl2()
78 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) { in find_format_copy_impl()
79 return ::boost::algorithm::detail::find_format_copy_impl2( in find_format_copy_impl()
86 return std::copy( ::boost::begin(Input), ::boost::end(Input), Output ); in find_format_copy_impl()
121 insert( Output, ::boost::end(Output), ::boost::begin(Input), M.begin() ); in find_format_copy_impl2()
123 insert( Output, ::boost::end(Output), M.format_result() ); in find_format_copy_impl2()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
Dassert.hpp123 boost::mpl::aux::weighted_tag<1>::type operator==( assert_, assert_ );
124 boost::mpl::aux::weighted_tag<2>::type operator!=( assert_, assert_ );
125 boost::mpl::aux::weighted_tag<3>::type operator>( assert_, assert_ );
126 boost::mpl::aux::weighted_tag<4>::type operator>=( assert_, assert_ );
127 boost::mpl::aux::weighted_tag<5>::type operator<( assert_, assert_ );
128 boost::mpl::aux::weighted_tag<6>::type operator<=( assert_, assert_ );
159 failed ************ (boost::mpl::not_<Pred>::************
195 typename assert_arg_type< boost::mpl::not_<Pred> >::type
221 boost::mpl::assertion_failed<false>( \
222 boost::mpl::assert_arg( (void (*) pred)0, 1 ) \
[all …]
Dhas_xxx.hpp54 namespace boost { namespace mpl { namespace aux { namespace
94 template< typename T, typename name = ::boost::mpl::aux::has_xxx_tag > \
97 static boost::mpl::aux::no_tag \
98 test(void(*)(::boost::mpl::aux::has_xxx_tag)); \
100 static boost::mpl::aux::yes_tag test(...); \
104 != sizeof(boost::mpl::aux::no_tag) \
106 typedef boost::mpl::bool_<value> type; \
109 template< typename T, typename fallback_ = boost::mpl::bool_<default_> > \
111 : boost::mpl::if_c< \
112 boost::mpl::aux::msvc_is_incomplete<T>::value \
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
Dunit_test_suite.hpp29 boost::unit_test::make_test_case( boost::unit_test::callback0<>(test_function), BOOST_TEST_STRINGIZ…
31 boost::unit_test::make_test_case((test_function), BOOST_TEST_STRINGIZE( test_function ), tc_instanc…
38 ( new boost::unit_test::test_suite( testsuite_name ) )
75 : boost::unit_test::ut_detail:: \
79 : boost::unit_test::ut_detail:: \
102 boost::unit_test::make_test_case( \
104 boost::unit_test::ut_detail::auto_tc_exp_fail< \
129 static void run( boost::type<TestType>* = 0 ) \
137 boost::unit_test::ut_detail::template_test_case_gen< \
157 boost::unit_test::ut_detail::template_test_case_gen<name,typelist >( \
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
Dboost_type_traits.h49 enum { _Is = ::boost::is_reference<_Tp>::value };
54 enum { is_pointer = ::boost::is_pointer<_Tp>::value };
59 enum { is_integral = ::boost::is_integral<_Tp>::value };
64 enum { is_float = ::boost::is_float<_Tp>::value };
70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value };
73 enum { trivial_copy = ::boost::has_trivial_copy<_Tp>::value };
76 enum { trivial_assign = ::boost::has_trivial_assign<_Tp>::value };
79 enum { trivial_destructor = ::boost::has_trivial_destructor<_Tp>::value };
82 enum { pod = ::boost::is_pod<_Tp>::value };
88 typedef typename ::boost::remove_cv<_Tp1>::type uncv1;
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/
Dmath_fwd.hpp34 namespace boost namespace
854 …inline T modf(const T& v, boost::long_long_type* ipart){ using boost::math::modf; return modf(v, i…
857 …inline boost::long_long_type lltrunc(const T& v){ using boost::math::lltrunc; return lltrunc(v, Po…
860 …inline boost::long_long_type llround(const T& v){ using boost::math::llround; return llround(v, Po…
871 inline typename boost::math::tools::promote_args<RT1, RT2>::type \
872 beta(RT1 a, RT2 b) { return ::boost::math::beta(a, b, Policy()); }\
875 inline typename boost::math::tools::promote_args<RT1, RT2, A>::type \
876 beta(RT1 a, RT2 b, A x){ return ::boost::math::beta(a, b, x, Policy()); }\
879 inline typename boost::math::tools::promote_args<RT1, RT2, RT3>::type \
880 betac(RT1 a, RT2 b, RT3 x) { return ::boost::math::betac(a, b, x, Policy()); }\
[all …]

12345678910>>...22