/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 | 50 void throw_from_string_out_of_range( const string& func ) in throw_from_string_out_of_range() argument 52 throw_helper<out_of_range>(func + ": out of range"); in throw_from_string_out_of_range() 56 void throw_from_string_invalid_arg( const string& func ) in throw_from_string_invalid_arg() argument 58 throw_helper<invalid_argument>(func + ": no conversion"); in throw_from_string_invalid_arg() 66 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) in as_integer_helper() argument 75 throw_from_string_out_of_range(func); in as_integer_helper() 77 throw_from_string_invalid_arg(func); in as_integer_helper() 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 ) in as_integer() argument 95 long r = as_integer_helper<long>( func, s, idx, base, strtol ); in as_integer() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | cxa_default_handlers.cpp | 105 set_unexpected(unexpected_handler func) _NOEXCEPT in set_unexpected() argument 107 if (func == 0) in set_unexpected() 108 func = default_unexpected_handler; in set_unexpected() 109 return __sync_swap(&__cxa_unexpected_handler, func); in set_unexpected() 115 set_terminate(terminate_handler func) _NOEXCEPT in set_terminate() argument 117 if (func == 0) in set_terminate() 118 func = default_terminate_handler; in set_terminate() 119 return __sync_swap(&__cxa_terminate_handler, func); in set_terminate()
|
D | cxa_handlers.cpp | 37 __unexpected(unexpected_handler func) in __unexpected() argument 39 func(); in __unexpected() 62 __terminate(terminate_handler func) _NOEXCEPT in __terminate() argument 68 func(); in __terminate()
|
D | cxa_handlers.hpp | 23 __unexpected(unexpected_handler func); 27 __terminate(terminate_handler func) _NOEXCEPT;
|
/ndk/build/core/ |
D | definitions-utils.mk | 93 $(eval -local-func = $$(call seq,foo,$$1))\ 94 $(call test-expect,,$(call filter-by,,-local-func))\ 95 $(call test-expect,foo,$(call filter-by,foo,-local-func))\ 96 $(call test-expect,foo,$(call filter-by,foo bar,-local-func))\ 97 $(call test-expect,foo foo,$(call filter-by,aaa foo bar foo,-local-func))\ 98 $(eval -local-func = $$(call sne,foo,$$1))\ 99 $(call test-expect,,$(call filter-by,,-local-func))\ 100 $(call test-expect,,$(call filter-by,foo,-local-func))\ 101 $(call test-expect,bar,$(call filter-by,foo bar,-local-func))\ 102 $(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_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_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_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/futures/futures.tas/futures.task.members/ |
D | ctor_func.pass.cpp | 38 int func(int i) { return i; } in func() function 64 std::packaged_task<int(int)> p(&func); in main() 71 std::packaged_task<int(int)> p(func); in main()
|
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()
|
D | ctor_func_alloc.pass.cpp | 40 int func(int i) { return i; } in func() function 75 std::packaged_task<int(int)> p(std::allocator_arg, test_allocator<A>(), &func); in main() 87 std::packaged_task<int(int)> p(std::allocator_arg, test_allocator<A>(), func); 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++abi/libcxxabi/src/Unwind/ |
D | config.h | 69 …static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) __at… 70 static inline void assert_rtn(const char* func, const char* file, int line, const char* msg) { in assert_rtn() argument 71 fprintf(stderr, "libunwind: %s %s:%d - %s\n", func, file, line, msg); in assert_rtn()
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0010-Add-enough-symlink-to-rename-file-path-with-replace-.patch | 28 .../func.wrap.func/func.wrap.func.nullptr/operator_EQEQ.pass.cpp | 1 + 57 …create mode 120000 test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.nullptr… 219 …cts/func.wrap/func.wrap.func/func.wrap.func.nullptr/operator_EQEQ.pass.cpp b/test/utilities/functi… 223 +++ b/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.nullptr/operator_EQEQ…
|