Home
last modified time | relevance | path

Searched refs:__type (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h188 #define _STLP_MATH_INLINEX(__type,func,cfunc) \ argument
189 inline __type func (__type x) \
190 { return __STATIC_CAST(__type, _STLP_CMATH_FUNC_NAMESPACE::cfunc((double)x)); }
194 #define _STLP_MATH_INLINE2PX(__type,func,cfunc) \ argument
195 inline __type func (__type x, __type *y) { \
198 *y = __STATIC_CAST(__type, tmp2); \
199 return __STATIC_CAST(__type, tmp1); \
201 #define _STLP_MATH_INLINE2XX(__type,func,cfunc) \ argument
202 inline __type func (__type x, __type y) \
203 { return __STATIC_CAST(__type, _STLP_CMATH_FUNC_NAMESPACE::cfunc((double)x, (double)y)); }
D_function.h126 # define __UNARY_ARG(__Operation,__type) __unary_fun_aux<__Operation>::__type argument
127 # define __BINARY_ARG(__Operation,__type) __binary_fun_aux<__Operation>::__type argument
128 # define __PAIR_ARG(__Pair,__type) __pair_aux<__Pair>::__type argument
130 # define __UNARY_ARG(__Operation,__type) __Operation::__type argument
131 # define __BINARY_ARG(__Operation,__type) __Operation::__type argument
132 # define __PAIR_ARG(__Pair,__type) __Pair::__type argument
D_limits.c36 # define __declare_numeric_base_member(__type, __mem) \ argument
38 const __type _Numeric_limits_base<__number>:: __mem
65 # define __declare_integer_limits_member(__type, __mem) \ argument
67 const __type _Integer_limits<_Int, __imin, __imax, __idigits, __ismod>:: __mem
102 # define __declare_float_limits_member(__type, __mem) \ argument
110 const __type _Floating_limits< __number, __Digits, __Digits10, \
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
Dfeatures.h786 # define __TRIVIAL_CONSTRUCTOR(__type) __type() {} argument
788 # define __TRIVIAL_CONSTRUCTOR(__type) argument
792 # define __TRIVIAL_DESTRUCTOR(__type) ~__type() {} argument
794 # define __TRIVIAL_DESTRUCTOR(__type) argument
797 #define __TRIVIAL_STUFF(__type) \ argument
798 __TRIVIAL_CONSTRUCTOR(__type) __TRIVIAL_DESTRUCTOR(__type)
801 # define _STLP_STATIC_CONSTANT(__type, __assignment) enum { __assignment } argument
803 # define _STLP_STATIC_CONSTANT(__type, __assignment) static const __type __assignment argument