/ndk/tests/device/issue28598-linker-global-ref/jni/ |
H A D | liba.cpp | 4 void func() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
H A D | signal_h.pass.cpp | 54 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 D | csignal.pass.cpp | 54 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 D | set_rvalue_at_thread_exit.pass.cpp | 22 void func(std::promise<std::unique_ptr<int>> p) function 35 std::thread(func, std::move(p)).detach();
|
H A D | set_lvalue_at_thread_exit.pass.cpp | 22 void func(std::promise<int&> p) function 33 std::thread(func, std::move(p)).detach();
|
H A D | set_value_at_thread_exit_const.pass.cpp | 19 void func(std::promise<int> p) function 30 std::thread(func, std::move(p)).detach();
|
H A D | set_value_at_thread_exit_void.pass.cpp | 22 void func(std::promise<void> p) function 33 std::thread(func, std::move(p)).detach();
|
H A D | set_exception_at_thread_exit.pass.cpp | 19 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 D | spec3.cpp | 15 void func() throw (B,A) function 22 try { func(); }
|
H A D | new1_3.cpp | 10 // 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 D | spec3.cpp | 15 void func() throw (B,A) function 22 try { func(); }
|
H A D | new1_3.cpp | 10 // 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 D | dtor.pass.cpp | 29 void func(std::packaged_task<double(int, char)> p) function 43 std::thread(func, std::move(p)).detach();
|
H A D | ctor_func.pass.cpp | 38 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 D | ctor_func_alloc.pass.cpp | 40 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 D | notify_all_at_thread_exit.pass.cpp | 27 void func() function 37 std::thread(func).detach();
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
H A D | cxa_handlers.cpp | 37 __unexpected(unexpected_handler func) argument 39 func(); 62 __terminate(terminate_handler func) _NOEXCEPT 68 func();
|
/ndk/tests/ |
H A D | filters.py | 76 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 D | config.h | 66 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 D | test_fenv.c | 35 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 D | libthread_db.c | 64 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 D | cxa.c | 55 } 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 D | string.cpp | 50 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 D | ptrspec_test.cpp | 71 void func() {} function in class:AClass 101 mem_func_vector.push_back(&AClass::func);
|
/ndk/tests/device/test-stlport/unit/ |
H A D | ptrspec_test.cpp | 71 void func() {} function in class:AClass 101 mem_func_vector.push_back(&AClass::func);
|