/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/ |
D | placeholders.hpp | 30 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 …]
|
D | arg.hpp | 28 template< int I > struct arg struct 30 arg() in arg() function 34 template< class T > arg( T const & /* t */ ) in arg() function 41 template< int I > bool operator==( arg<I> const &, arg<I> const & ) in operator ==() 48 template< int I > struct is_placeholder< arg<I> > 53 template< int I > struct is_placeholder< arg<I> (*) () >
|
D | storage.hpp | 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_() 107 template<class A1, int I> struct storage2< A1, boost::arg<I> (*) () >: public storage1<A1> [all …]
|
D | bind.hpp | 86 template<int I> bool ref_compare( arg<I> const &, arg<I> const &, int ) in ref_compare() 91 template<int I> bool ref_compare( arg<I> (*) (), arg<I> (*) (), int ) in ref_compare() 227 A1 operator[] (boost::arg<1>) const { return base_type::a1_; } in operator []() 229 A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } in operator []() 285 A1 operator[] (boost::arg<1>) const { return base_type::a1_; } in operator []() 286 A2 operator[] (boost::arg<2>) const { return base_type::a2_; } in operator []() 288 A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } in operator []() 289 A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } in operator []() 362 A1 operator[] (boost::arg<1>) const { return base_type::a1_; } in operator []() 363 A2 operator[] (boost::arg<2>) const { return base_type::a2_; } in operator []() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _como.h | 91 inline long double expl(long double arg) { return exp(arg); } in expl() argument 92 inline long double logl(long double arg) { return log(arg); } in logl() argument 121 inline float logf(float arg) { return log(arg); } in logf() argument 122 inline long double logl(long double arg) { return log(arg); } in logl() argument 126 inline long double expl(long double arg) { return exp(arg); } in expl() argument 164 inline long double expl(long double arg) { return exp(arg); } in expl() argument 165 inline long double logl(long double arg) { return log(arg); } in logl() argument
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
D | arg.hpp | 14 template<> struct arg< -1 > struct 31 template<> struct arg<1> struct 34 typedef arg<2> next; argument 49 template<> struct arg<2> struct 52 typedef arg<3> next; argument 67 template<> struct arg<3> struct 70 typedef arg<4> next; argument 85 template<> struct arg<4> argument 88 typedef arg<5> next; argument 103 template<> struct arg<5> struct [all …]
|
D | placeholders.hpp | 14 typedef arg< -1 > _; 29 typedef arg<1> _1; 42 typedef arg<2> _2; 55 typedef arg<3> _3; 68 typedef arg<4> _4; 81 typedef arg<5> _5; 94 typedef arg<6> _6;
|
/ndk/sources/android/support/src/stdio/ |
D | vfwprintf.c | 140 union arg union 147 static void pop_arg(union arg *arg, int type, va_list *ap) in pop_arg() argument 152 case PTR: arg->p = va_arg(*ap, void *); in pop_arg() 153 break; case INT: arg->i = va_arg(*ap, int); in pop_arg() 154 break; case UINT: arg->i = va_arg(*ap, unsigned int); in pop_arg() 156 break; case LONG: arg->i = va_arg(*ap, long); in pop_arg() 157 break; case ULONG: arg->i = va_arg(*ap, unsigned long); in pop_arg() 159 break; case ULLONG: arg->i = va_arg(*ap, unsigned long long); in pop_arg() 160 break; case SHORT: arg->i = (short)va_arg(*ap, int); in pop_arg() 161 break; case USHORT: arg->i = (unsigned short)va_arg(*ap, int); in pop_arg() [all …]
|
D | vfprintf.c | 150 union arg union 157 static void pop_arg(union arg *arg, int type, va_list *ap) in pop_arg() argument 162 case PTR: arg->p = va_arg(*ap, void *); in pop_arg() 163 break; case INT: arg->i = va_arg(*ap, int); in pop_arg() 164 break; case UINT: arg->i = va_arg(*ap, unsigned int); in pop_arg() 166 break; case LONG: arg->i = va_arg(*ap, long); in pop_arg() 167 break; case ULONG: arg->i = va_arg(*ap, unsigned long); in pop_arg() 169 break; case ULLONG: arg->i = va_arg(*ap, unsigned long long); in pop_arg() 170 break; case SHORT: arg->i = (short)va_arg(*ap, int); in pop_arg() 171 break; case USHORT: arg->i = (unsigned short)va_arg(*ap, int); in pop_arg() [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/ |
D | value_init.hpp | 82 wrapper(T const & arg) in wrapper() 84 data(arg) in wrapper() 110 initialized(initialized const & arg) in initialized() argument 112 new (wrapper_address()) wrapper( static_cast<wrapper const &>(*(arg.wrapper_address()))); in initialized() 115 explicit initialized(T const & arg) in initialized() argument 117 new (wrapper_address()) wrapper(arg); in initialized() 120 initialized & operator=(initialized const & arg) in operator =() argument 124 *wrapper_address() = static_cast<wrapper const &>(*(arg.wrapper_address())); in operator =() 143 void swap(initialized & arg) in swap() argument 145 ::boost::swap( this->data(), arg.data() ); in swap() [all …]
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | eh-vararg-2.cpp | 30 test (va_list arg) throw (B,A) in test() argument 37 size = va_arg (arg, int); in test() 43 x = va_arg (arg, double); in test() 66 va_list arg; in foo() local 67 va_start (arg, fmt); in foo() 68 test (arg); in foo() 69 va_end (arg); in foo()
|
D | eh-vararg-1.cpp | 32 va_list arg; in foo() local 38 va_start (arg, fmt); in foo() 39 size = va_arg (arg, int); in foo() 44 x = va_arg (arg, double); in foo() 63 va_end (arg); in foo()
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | eh-vararg-2.cpp | 30 test (va_list arg) throw (B,A) in test() argument 37 size = va_arg (arg, int); in test() 43 x = va_arg (arg, double); in test() 66 va_list arg; in foo() local 67 va_start (arg, fmt); in foo() 68 test (arg); in foo() 69 va_end (arg); in foo()
|
D | eh-vararg-1.cpp | 32 va_list arg; in foo() local 38 va_start (arg, fmt); in foo() 39 size = va_arg (arg, int); in foo() 44 x = va_arg (arg, double); in foo() 63 va_end (arg); in foo()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/cmplx.over/ |
D | arg.pass.cpp | 26 static_assert((std::is_same<decltype(std::arg(x)), double>::value), ""); in test() 27 assert(std::arg(x) == arg(std::complex<double>(x, 0))); in test() 34 static_assert((std::is_same<decltype(std::arg(x)), T>::value), ""); in test() 35 assert(std::arg(x) == arg(std::complex<T>(x, 0))); in test()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
D | arg.hpp | 36 # define BOOST_MPL_PREPROCESSED_HEADER arg.hpp 73 (3,(0, BOOST_MPL_LIMIT_METAFUNCTION_ARITY, <boost/mpl/arg.hpp>)) 79 BOOST_MPL_AUX_NONTYPE_ARITY_SPEC(1,int,arg) 93 template<> struct arg<i_> 96 typedef arg<BOOST_PP_INC(i_)> next; 112 template<> struct arg<-1>
|
D | arg_fwd.hpp | 23 template< BOOST_MPL_AUX_NTTP_DECL(int, N) > struct arg; 26 BOOST_MPL_AUX_ADL_BARRIER_DECL(arg)
|
D | placeholders.hpp | 55 typedef arg<-1> _; 85 typedef arg<i_> BOOST_PP_CAT(_,i_);
|
D | for_each.hpp | 70 typedef typename apply1<TransformFunc,item>::type arg; in execute() typedef 74 value_initialized<arg> x; in execute()
|
/ndk/sources/host-tools/make-3.81/config/ |
D | depcomp | 356 for arg 358 case $arg in 366 set fnord "$@" "$arg" 407 for arg in "$@"; do 413 case "$arg" in 415 set fnord "$@" "$arg"; shift ;; 421 set fnord "$@" "$arg"; shift ;; 452 for arg 454 case $arg in 462 set fnord "$@" "$arg" [all …]
|
/ndk/sources/cxx-stl/stlport/src/ |
D | cxa.c | 47 void (*fn)(int status, void *arg); 48 void *arg; member 51 void (*fn)(void *arg, int status); 52 void *arg; member 70 int __cxa_atexit(void (*func)(void *), void *arg, void *d) in __cxa_atexit() argument 79 new->func.cxa.arg = arg; in __cxa_atexit() 177 (*f->func.cxa.fn) (f->func.cxa.arg, 0); in __cxa_finalize()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
D | array.hpp | 387 typename detail::c_array<T,N>::type& get_c_array(boost::array<T,N>& arg) in get_c_array() argument 389 return arg.elems; in get_c_array() 394 typename const detail::c_array<T,N>::type& get_c_array(const boost::array<T,N>& arg) in get_c_array() argument 396 return arg.elems; in get_c_array() 401 T(&get_c_array(boost::array<T,N>& arg))[N] in get_c_array() argument 403 return arg.elems; in get_c_array() 408 const T(&get_c_array(const boost::array<T,N>& arg))[N] 410 return arg.elems; in __anon0e3780b50402() 419 T(&get_c_array(std::array<T,N>& arg))[N] 421 return static_cast<T(&)[N]>(arg); [all …]
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/ |
D | stringize.hpp | 23 # define BOOST_PP_STRINGIZE_A(arg) BOOST_PP_STRINGIZE_I arg argument
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/ |
D | cast.hpp | 39 inline Target numeric_cast( Source arg ) in numeric_cast() argument 53 return converter::convert(arg); in numeric_cast()
|
/ndk/sources/cxx-stl/gabi++/tests/ |
D | test_guard.cpp | 33 static void* thread_run(void* arg) in thread_run() argument 35 int index = (int)(intptr_t)arg; in thread_run()
|