/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _cmath.h | 163 # define _STLP_MATH_INLINE(float_type, func, cfunc) \ argument 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) \ argument 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) argument 168 # define _STLP_MATH_INLINE2_D(float_type, type, func, cfunc) argument 171 # define _STLP_MATH_INLINE(float_type, func, cfunc) \ argument 172 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::__##cfunc(x); } 173 # define _STLP_MATH_INLINE_D(float_type, func, cfunc) \ argument 174 inline float_type func (float_type x) { return _STLP_VENDOR_CSTD::cfunc(x); } [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | string.cpp | 46 void throw_from_string_out_of_range( const string& func ) in throw_from_string_out_of_range() argument 48 throw_helper<out_of_range>(func + ": out of range"); in throw_from_string_out_of_range() 52 void throw_from_string_invalid_arg( const string& func ) in throw_from_string_invalid_arg() argument 54 throw_helper<invalid_argument>(func + ": no conversion"); in throw_from_string_invalid_arg() 62 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) in as_integer_helper() argument 71 throw_from_string_out_of_range(func); in as_integer_helper() 73 throw_from_string_invalid_arg(func); in as_integer_helper() 82 as_integer(const string& func, const S& s, size_t* idx, int base); 88 as_integer(const string& func, const string& s, size_t* idx, int base ) in as_integer() argument 91 long r = as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer() [all …]
|
D | exception.cpp | 48 set_unexpected(unexpected_handler func) _NOEXCEPT in set_unexpected() argument 50 return __sync_lock_test_and_set(&__unexpected_handler, func); in set_unexpected() 69 set_terminate(terminate_handler func) _NOEXCEPT in set_terminate() argument 71 return __sync_lock_test_and_set(&__terminate_handler, func); in set_terminate()
|
D | mutex.cpp | 216 __call_once(volatile unsigned long& flag, void* arg, void(*func)(void*)) in __call_once() 229 func(arg); in __call_once()
|
/ndk/build/core/ |
D | definitions-utils.mk | 86 $(eval -local-func = $$(call seq,foo,$$1))\ 87 $(call test-expect,,$(call filter-by,,-local-func))\ 88 $(call test-expect,foo,$(call filter-by,foo,-local-func))\ 89 $(call test-expect,foo,$(call filter-by,foo bar,-local-func))\ 90 $(call test-expect,foo foo,$(call filter-by,aaa foo bar foo,-local-func))\ 91 $(eval -local-func = $$(call sne,foo,$$1))\ 92 $(call test-expect,,$(call filter-by,,-local-func))\ 93 $(call test-expect,,$(call filter-by,foo,-local-func))\ 94 $(call test-expect,bar,$(call filter-by,foo bar,-local-func))\ 95 $(call test-expect,aaa bar,$(call filter-by,aaa foo bar,-local-func)) [all …]
|
D | definitions-graph.mk | 58 $(eval -local-func = $$(call seq,foo,$$1))\ 59 $(call test-expect,,$(call -ndk-mod-filter,,-local-func))\ 60 $(call test-expect,foo,$(call -ndk-mod-filter,foo,-local-func))\ 61 $(call test-expect,foo,$(call -ndk-mod-filter,foo bar,-local-func))\ 62 $(call test-expect,foo foo,$(call -ndk-mod-filter,aaa foo bar foo,-local-func))\ 63 $(eval -local-func = $$(call sne,foo,$$1))\ 64 $(call test-expect,,$(call -ndk-mod-filter,,-local-func))\ 65 $(call test-expect,,$(call -ndk-mod-filter,foo,-local-func))\ 66 $(call test-expect,bar,$(call -ndk-mod-filter,foo bar,-local-func))\ 67 $(call test-expect,aaa bar,$(call -ndk-mod-filter,aaa foo bar,-local-func)) [all …]
|
/ndk/sources/cxx-stl/stlport/src/ |
D | cxa.c | 55 } func; member 70 int __cxa_atexit(void (*func)(void *), void *arg, void *d) in __cxa_atexit() 78 new->func.cxa.fn = (void (*) (void *, int)) func; in __cxa_atexit() 79 new->func.cxa.arg = arg; in __cxa_atexit() 80 new->func.cxa.dso_handle = d; in __cxa_atexit() 175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) { in __cxa_finalize() 177 (*f->func.cxa.fn) (f->func.cxa.arg, 0); in __cxa_finalize()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | signal_h.pass.cpp | 54 typedef void (*func)(int); in main() typedef 55 static_assert((std::is_same<decltype(signal(0, (func)0)), func>::value), ""); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.runtime/ |
D | csignal.pass.cpp | 54 typedef void (*func)(int); in main() typedef 55 static_assert((std::is_same<decltype(std::signal(0, (func)0)), func>::value), ""); in main()
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | spec3.cpp | 15 void func() throw (B,A) in func() function 22 try { func(); } in main()
|
D | new1_3.cpp | 80 void func(B* ) in func() function 89 func(new B(A(10).addr())); in test1() 114 func(new B(A(10).addr())); in test2() 139 func(new B(A(10).addr())); in test3()
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | spec3.cpp | 15 void func() throw (B,A) in func() function 22 try { func(); } in main()
|
D | new1_3.cpp | 80 void func(B* ) in func() function 89 func(new B(A(10).addr())); in test1() 114 func(new B(A(10).addr())); in test2() 139 func(new B(A(10).addr())); in test3()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/ |
D | set_value_at_thread_exit_const.pass.cpp | 19 void func(std::promise<int> p) in func() function 30 std::thread(func, std::move(p)).detach(); in main()
|
D | set_lvalue_at_thread_exit.pass.cpp | 22 void func(std::promise<int&> p) in func() function 33 std::thread(func, std::move(p)).detach(); in main()
|
D | set_value_at_thread_exit_void.pass.cpp | 22 void func(std::promise<void> p) in func() function 33 std::thread(func, std::move(p)).detach(); in main()
|
D | set_exception_at_thread_exit.pass.cpp | 19 void func(std::promise<int> p) in func() function 31 std::thread(func, std::move(p)).detach(); in main()
|
D | set_rvalue_at_thread_exit.pass.cpp | 22 void func(std::promise<std::unique_ptr<int>> p) in func() function 35 std::thread(func, std::move(p)).detach(); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/ |
D | notify_all_at_thread_exit.pass.cpp | 27 void func() in func() function 37 std::thread(func).detach(); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/ |
D | dtor.pass.cpp | 29 void func(std::packaged_task<double(int, char)> p) in func() function 43 std::thread(func, std::move(p)).detach(); in main()
|
/ndk/tests/device/issue28598-linker-global-ref/jni/ |
D | liba.h | 2 void func();
|
D | liba.cpp | 4 void func() in func() function
|
D | main.cpp | 6 func(); in main()
|
/ndk/tests/device/bitfield/jni/ |
D | Android.mk | 10 func.c
|
/ndk/tests/device/fenv/jni/ |
D | test_fenv.c | 35 void fail(const char* file, int line, const char* func, const char* expr) in fail() argument 37 printf("ERROR %s:%d %s: %s\n", file, line, func, expr); in fail()
|