Searched defs:arg (Results 1 - 25 of 31) sorted by relevance

12

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
H A Darg.hpp10 // Preprocessed version of "boost/mpl/arg.hpp" header
14 template<> struct arg< -1 > struct
31 template<> struct arg<1> struct
34 typedef arg<2> next;
49 template<> struct arg<2> struct
52 typedef arg<3> next;
67 template<> struct arg<3> struct
70 typedef arg<4> next;
85 template<> struct arg<4> struct
88 typedef arg<
103 template<> struct arg<5> struct
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
H A Darg.hpp11 // bind/arg.hpp
28 template< int I > struct arg struct in namespace:boost
30 arg() function in struct:boost::arg
34 template< class T > arg( T const & /* t */ ) function in struct:boost::arg
41 template< int I > bool operator==( arg<I> const &, arg<I> const & )
48 template< int I > struct is_placeholder< arg<I> >
53 template< int I > struct is_placeholder< arg<I> (*) () >
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Doperators23.cpp31 int main(int arg, char** argv) { argument
H A Deh-vararg-1.cpp32 va_list arg; local
38 va_start (arg, fmt);
39 size = va_arg (arg, int);
44 x = va_arg (arg, double);
63 va_end (arg);
H A Deh-vararg-2.cpp30 test (va_list arg) throw (B,A) argument
37 size = va_arg (arg, int);
43 x = va_arg (arg, double);
66 va_list arg; local
67 va_start (arg, fmt);
68 test (arg);
69 va_end (arg);
/ndk/tests/device/test-stlport_static-exception/jni/
H A Doperators23.cpp31 int main(int arg, char** argv) { argument
H A Deh-vararg-1.cpp32 va_list arg; local
38 va_start (arg, fmt);
39 size = va_arg (arg, int);
44 x = va_arg (arg, double);
63 va_end (arg);
H A Deh-vararg-2.cpp30 test (va_list arg) throw (B,A) argument
37 size = va_arg (arg, int);
43 x = va_arg (arg, double);
66 va_list arg; local
67 va_start (arg, fmt);
68 test (arg);
69 va_end (arg);
/ndk/sources/cxx-stl/gabi++/tests/
H A Dtest_guard.cpp33 static void* thread_run(void* arg) argument
35 int index = reinterpret_cast<int>(arg);
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
H A Dfor_each.hpp70 typedef typename apply1<TransformFunc,item>::type arg; typedef
73 // when we pass arg.
74 value_initialized<arg> x;
H A Dassert.hpp98 static assert_ const arg; member in struct:assert_
267 boost::mpl::assert_::arg rel boost::mpl::assert_::arg \
280 boost::mpl::assert_::arg rel boost::mpl::assert_::arg \
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dmutex.cpp216 __call_once(volatile unsigned long& flag, void* arg, void(*func)(void*)) argument
229 func(arg);
/ndk/sources/host-tools/sed-4.2.1/sed/
H A Dsed.c341 char *arg = argv[optind++]; local
342 the_program = compile_string(the_program, arg, strlen(arg));
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
H A Dvalue_init.hpp82 wrapper(T const & arg) argument
84 data(arg)
110 initialized(initialized const & arg) argument
112 new (wrapper_address()) wrapper( static_cast<wrapper const &>(*(arg.wrapper_address())));
115 explicit initialized(T const & arg) argument
117 new (wrapper_address()) wrapper(arg);
120 initialized & operator=(initialized const & arg) argument
124 *wrapper_address() = static_cast<wrapper const &>(*(arg.wrapper_address()));
143 void swap(initialized & arg) argument
145 ::boost::swap( this->data(), arg
203 swap(value_initialized & arg) argument
[all...]
/ndk/sources/cxx-stl/gabi++/src/
H A Dcall_unexpected.cc187 __cxa_call_unexpected(void* arg) { argument
188 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg);
250 __cxa_call_unexpected(void* arg) {
251 _Unwind_Exception* unwind_exception = static_cast<_Unwind_Exception*>(arg);
/ndk/sources/cxx-stl/stlport/src/
H A Dcxa.c47 void (*fn)(int status, void *arg);
48 void *arg; member in struct:exit_function::__anon89::__anon90
51 void (*fn)(void *arg, int status);
52 void *arg; member in struct:exit_function::__anon89::__anon91
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d) argument
79 new->func.cxa.arg = arg;
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
H A Dcomplex.cpp55 _STLP_DECLSPEC float _STLP_CALL arg(const complex<float>& __z) function
59 _STLP_DECLSPEC double _STLP_CALL arg(const complex<double>& __z) function
64 _STLP_DECLSPEC long double _STLP_CALL arg(const complex<long double>& __z) function
H A Dios.cpp210 const char* arg ; local
219 arg = buffer;
221 arg = "ios failure";
225 fputs(arg, stderr);
227 throw failure(arg);
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_complex.h738 _Tp _STLP_CALL arg(const complex<_Tp>& __z);
760 _STLP_DECLSPEC float _STLP_CALL arg(const complex<float>&);
762 _STLP_DECLSPEC double _STLP_CALL arg(const complex<double>&);
773 _Tp _STLP_CALL arg(const complex<_Tp>& __z) function
774 { return _Tp(arg(complex<double>(double(__z.real()), double(__z.imag())))); }
784 _STLP_DECLSPEC long double _STLP_CALL arg(const complex<long double>&);
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
H A D_como.h91 inline long double expl(long double arg) { return exp(arg); } argument
92 inline long double logl(long double arg) { return log(arg); } argument
121 inline float logf(float arg) { return log(arg); } argument
122 inline long double logl(long double arg) { return log(arg); } argument
126 inline long double expl(long double arg) { return exp(arg); } argument
164 expl(long double arg) argument
165 logl(long double arg) argument
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dhash.c237 hash_map_arg (struct hash_table *ht, hash_map_arg_func_t map, void *arg) argument
245 (*map) (*slot, arg);
H A Darscan.c124 NOTE: on VMS systems, only name, date, and arg are meaningful!
138 ar_scan (char *archive, long int (*function) PARAMS ((void)), intptr_t arg)
167 archive, (char *)arg);
171 VMS_saved_memname = (char *)arg;
173 /* For comparison, delete .obj from arg name. */
306 ar_scan (char *archive, long int (*function)(), intptr_t arg)
527 eltmode, arg);
632 eltmode, arg);
137 ar_scan(char *archive, long int (*function) PARAMS ((void)), intptr_t arg) argument
304 ar_scan(char *archive, long int (*function)(), intptr_t arg) argument
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dobstack.c194 void *arg)
221 h->extra_arg = arg;
190 _obstack_begin_1(struct obstack *h, int size, int alignment, void *(*chunkfun) (void *, long), void (*freefun) (void *, void *), void *arg) argument
H A Dquotearg.c186 char const *arg, size_t argsize,
279 for (i = 0; ! (argsize == SIZE_MAX ? arg[i] == '\0' : i == argsize); i++)
287 && memcmp (arg + i, quote_string, quote_string_len) == 0)
294 c = arg[i];
303 if (i + 1 < argsize && '0' <= arg[i + 1] && arg[i + 1] <= '9')
324 && i + 2 < argsize && arg[i + 1] == '?')
325 switch (arg[i + 2])
334 c = arg[i + 2];
379 if (! (argsize == SIZE_MAX ? arg[
185 quotearg_buffer_restyled(char *buffer, size_t buffersize, char const *arg, size_t argsize, enum quoting_style quoting_style, int flags, unsigned int const *quote_these_too) argument
579 quotearg_buffer(char *buffer, size_t buffersize, char const *arg, size_t argsize, struct quoting_options const *o) argument
593 quotearg_alloc(char const *arg, size_t argsize, struct quoting_options const *o) argument
606 quotearg_alloc_mem(char const *arg, size_t argsize, size_t *size, struct quoting_options const *o) argument
668 quotearg_n_options(int n, char const *arg, size_t argsize, struct quoting_options const *options) argument
724 quotearg_n(int n, char const *arg) argument
730 quotearg_n_mem(int n, char const *arg, size_t argsize) argument
736 quotearg(char const *arg) argument
742 quotearg_mem(char const *arg, size_t argsize) argument
748 quotearg_n_style(int n, enum quoting_style s, char const *arg) argument
755 quotearg_n_style_mem(int n, enum quoting_style s, char const *arg, size_t argsize) argument
763 quotearg_style(enum quoting_style s, char const *arg) argument
769 quotearg_style_mem(enum quoting_style s, char const *arg, size_t argsize) argument
775 quotearg_char_mem(char const *arg, size_t argsize, char ch) argument
784 quotearg_char(char const *arg, char ch) argument
790 quotearg_colon(char const *arg) argument
796 quotearg_colon_mem(char const *arg, size_t argsize) argument
[all...]
/ndk/sources/android/support/src/stdio/
H A Dvfwprintf.c228 union arg union
235 static void pop_arg(union arg *arg, int type, va_list *ap) argument
240 case PTR: arg->p = va_arg(*ap, void *);
241 break; case INT: arg->i = va_arg(*ap, int);
242 break; case UINT: arg->i = va_arg(*ap, unsigned int);
244 break; case LONG: arg->i = va_arg(*ap, long);
245 break; case ULONG: arg->i = va_arg(*ap, unsigned long);
247 break; case ULLONG: arg->i = va_arg(*ap, unsigned long long);
248 break; case SHORT: arg
283 union arg arg; local
[all...]

Completed in 416 milliseconds

12