Searched refs:func (Results 1 - 25 of 56) sorted by relevance

123

/ndk/tests/device/issue28598-linker-global-ref/jni/
H A Dliba.h2 void func()
H A Dliba.cpp4 void func() function
H A Dmain.cpp6 func();
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Dspec3.cpp15 void func() throw (B,A) function
22 try { func(); }
H A Dnew1_3.cpp10 // the result should be "ctor, new, func, dtor". If the new operator throws
16 // then the result should be "new, ctor, func, dtor". If the new operator
80 void func(B* ) function
89 func(new B(A(10).addr()));
114 func(new B(A(10).addr()));
139 func(new B(A(10).addr()));
/ndk/tests/device/test-stlport_static-exception/jni/
H A Dspec3.cpp15 void func() throw (B,A) function
22 try { func(); }
H A Dnew1_3.cpp10 // the result should be "ctor, new, func, dtor". If the new operator throws
16 // then the result should be "new, ctor, func, dtor". If the new operator
80 void func(B* ) function
89 func(new B(A(10).addr()));
114 func(new B(A(10).addr()));
139 func(new B(A(10).addr()));
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
H A Dcxa_handlers.hpp23 __unexpected(unexpected_handler func);
27 __terminate(terminate_handler func) _NOEXCEPT;
H A Dcxa_default_handlers.cpp102 set_unexpected(unexpected_handler func) _NOEXCEPT
104 if (func == 0)
105 func = default_unexpected_handler;
106 return __atomic_exchange_n(&__cxa_unexpected_handler, func,
109 // return __cxa_unexpected_handler.exchange(func, memory_order_acq_rel);
113 set_terminate(terminate_handler func) _NOEXCEPT
115 if (func == 0)
116 func = default_terminate_handler;
117 return __atomic_exchange_n(&__cxa_terminate_handler, func,
120 // return __cxa_terminate_handler.exchange(func, memory_order_acq_re
[all...]
H A Dcxa_handlers.cpp37 __unexpected(unexpected_handler func) argument
39 func();
62 __terminate(terminate_handler func) _NOEXCEPT
68 func();
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_cmath.h163 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
164 inline float_type func (float_type x) { return _STLP_CMATH_FUNC_NAMESPACE::cfunc(x); }
165 # define _STLP_MATH_INLINE2(float_type, type, func, cfunc) \
166 inline float_type func (float_type x, type y) { return _STLP_CMATH_FUNC_NAMESPACE::cfunc(x, y); }
167 # define _STLP_MATH_INLINE_D(float_type, func, cfunc)
168 # define _STLP_MATH_INLINE2_D(float_type, type, func, cfunc)
171 # define _STLP_MATH_INLINE(float_type, func, cfunc) \
172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); }
173 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) \
174 inline float_type func (float_typ
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
H A Dset_lvalue_at_thread_exit.pass.cpp22 void func(std::promise<int&> p) function
33 std::thread(func, std::move(p)).detach();
H A Dset_value_at_thread_exit_const.pass.cpp19 void func(std::promise<int> p) function
30 std::thread(func, std::move(p)).detach();
H A Dset_value_at_thread_exit_void.pass.cpp22 void func(std::promise<void> p) function
33 std::thread(func, std::move(p)).detach();
H A Dset_exception_at_thread_exit.pass.cpp19 void func(std::promise<int> p) function
31 std::thread(func, std::move(p)).detach();
H A Dset_rvalue_at_thread_exit.pass.cpp22 void func(std::promise<std::unique_ptr<int>> p) function
35 std::thread(func, std::move(p)).detach();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dstring.cpp50 void throw_from_string_out_of_range( const string& func )
52 throw_helper<out_of_range>(func + ": out of range");
56 void throw_from_string_invalid_arg( const string& func )
58 throw_helper<invalid_argument>(func + ": no conversion");
66 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) argument
75 throw_from_string_out_of_range(func);
77 throw_from_string_invalid_arg(func);
86 as_integer(const string& func, const S& s, size_t* idx, int base);
92 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
95 long r = as_integer_helper<long>( func,
104 as_integer(const string& func, const string& s, size_t* idx, int base ) argument
112 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
120 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
128 as_integer( const string& func, const string& s, size_t* idx, int base ) argument
137 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
149 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
157 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
165 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
173 as_integer( const string& func, const wstring& s, size_t* idx, int base ) argument
183 as_float_helper(const string& func, const S& str, size_t* idx, F f ) argument
207 as_float( const string& func, const string& s, size_t* idx ) argument
215 as_float(const string& func, const string& s, size_t* idx ) argument
223 as_float( const string& func, const string& s, size_t* idx ) argument
231 as_float( const string& func, const wstring& s, size_t* idx ) argument
239 as_float( const string& func, const wstring& s, size_t* idx ) argument
247 as_float( const string& func, const wstring& s, size_t* idx ) argument
[all...]
/ndk/sources/cxx-stl/stlport/src/
H A Dcxa.c55 } func; member in struct:exit_function
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d)
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
H A Dsignal_h.pass.cpp54 typedef void (*func)(int); typedef
55 static_assert((std::is_same<decltype(signal(0, (func)0)), func>::value), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/
H A Dcsignal.pass.cpp54 typedef void (*func)(int); typedef
55 static_assert((std::is_same<decltype(std::signal(0, (func)0)), func>::value), "");
/ndk/tests/device/bitfield/jni/
H A DAndroid.mk10 func.c
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
H A Ddtor.pass.cpp29 void func(std::packaged_task<double(int, char)> p) function
43 std::thread(func, std::move(p)).detach();
H A Dctor_func.pass.cpp38 int func(int i) { return i; } function
64 std::packaged_task<int(int)> p(&func);
71 std::packaged_task<int(int)> p(func);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/
H A Dnotify_all_at_thread_exit.pass.cpp27 void func() function
37 std::thread(func).detach();
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
H A Dconfig.h66 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) __attribute__ ((noreturn));
67 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) { argument
68 fprintf(stderr, "libunwind: %s %s:%d - %s\n", func, file, line, msg);

Completed in 401 milliseconds

123