Searched defs:func (Results 1 - 25 of 34) sorted by relevance

12

/ndk/tests/device/issue28598-linker-global-ref/jni/
H A Dliba.cpp4 void func() function
/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/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
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();
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();
/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++/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);
H A Dctor_func_alloc.pass.cpp40 int func(int i) { return i; } function
75 std::packaged_task<int(int)> p(std::allocator_arg, test_allocator<A>(), &func);
87 std::packaged_task<int(int)> p(std::allocator_arg, test_allocator<A>(), 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/
H A Dcxa_handlers.cpp37 __unexpected(unexpected_handler func) argument
39 func();
62 __terminate(terminate_handler func) _NOEXCEPT
68 func();
/ndk/tests/
H A Dfilters.py76 def func(test_name): function in function:TestFilter._make_filter_function
78 return func
/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);
/ndk/tests/device/fenv/jni/
H A Dtest_fenv.c35 void fail(const char* file, int line, const char* func, const char* expr) argument
37 printf("ERROR %s:%d %s: %s\n", file, line, func, expr);
/ndk/sources/android/libthread_db/
H A Dlibthread_db.c64 td_thr_iter_f* func,
88 if (func(&handle, cookie) != 0) {
63 td_ta_thr_iter(td_thragent_t const* agent, td_thr_iter_f* func, void* cookie, td_thr_state_e state, int32_t prio, sigset_t* sigmask, uint32_t user_flags) argument
/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/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/tests/device/test-gnustl-full/unit/
H A Dptrspec_test.cpp71 void func() {} function in class:AClass
101 mem_func_vector.push_back(&AClass::func);
/ndk/tests/device/test-stlport/unit/
H A Dptrspec_test.cpp71 void func() {} function in class:AClass
101 mem_func_vector.push_back(&AClass::func);

Completed in 662 milliseconds

12