/external/llvm-project/libcxx/include/ |
D | __functional_03 | 99 template<class _FD, class _Alloc, class _FB> class __func; 102 class __func<_Fp, _Alloc, _Rp()> 107 explicit __func(_Fp __f) : __f_(_VSTD::move(__f), __default_init_tag()) {} 108 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 122 __func<_Fp, _Alloc, _Rp()>::__clone() const 125 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap; 128 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 129 ::new (__hold.get()) __func(__f_.first(), _Alloc(__a)); 135 __func<_Fp, _Alloc, _Rp()>::__clone(__base<_Rp()>* __p) const 137 ::new (__p) __func(__f_.first(), __f_.second()); [all …]
|
D | functional | 1649 // __func implements __base for a given functor type. 1651 template<class _FD, class _Alloc, class _FB> class __func; 1654 class __func<_Fp, _Alloc, _Rp(_ArgTypes...)> 1660 explicit __func(_Fp&& __f) 1664 explicit __func(const _Fp& __f, const _Alloc& __a) 1668 explicit __func(const _Fp& __f, _Alloc&& __a) 1672 explicit __func(_Fp&& __f, _Alloc&& __a) 1688 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone() const 1691 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap; 1694 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); [all …]
|
D | mutex | 668 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args) 673 _Gp __f(_VSTD::forward<_Callable>(__func), _VSTD::forward<_Args>(__args)...); 684 call_once(once_flag& __flag, _Callable& __func) 688 __call_once_param<_Callable> __p(__func); 696 call_once(once_flag& __flag, const _Callable& __func) 700 __call_once_param<const _Callable> __p(__func);
|
D | __threading_support | 254 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 506 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 509 return pthread_create(__t, nullptr, __func, __arg); 667 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 670 int __ec = thrd_create(__t, reinterpret_cast<thrd_start_t>(__func), __arg);
|
D | __debug | 79 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func);
|
/external/libcxx/include/ |
D | __functional_03 | 100 template<class _FD, class _Alloc, class _FB> class __func; 103 class __func<_Fp, _Alloc, _Rp()> 108 explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {} 109 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {} 123 __func<_Fp, _Alloc, _Rp()>::__clone() const 126 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap; 129 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); 130 ::new (__hold.get()) __func(__f_.first(), _Alloc(__a)); 136 __func<_Fp, _Alloc, _Rp()>::__clone(__base<_Rp()>* __p) const 138 ::new (__p) __func(__f_.first(), __f_.second()); [all …]
|
D | mutex | 660 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args) 665 _Gp __f(_VSTD::forward<_Callable>(__func), _VSTD::forward<_Args>(__args)...); 676 call_once(once_flag& __flag, _Callable& __func) 680 __call_once_param<_Callable> __p(__func); 688 call_once(once_flag& __flag, const _Callable& __func) 692 __call_once_param<const _Callable> __p(__func);
|
D | functional | 1572 // __func implements __base for a given functor type. 1574 template<class _FD, class _Alloc, class _FB> class __func; 1577 class __func<_Fp, _Alloc, _Rp(_ArgTypes...)> 1583 explicit __func(_Fp&& __f) 1587 explicit __func(const _Fp& __f, const _Alloc& __a) 1591 explicit __func(const _Fp& __f, _Alloc&& __a) 1595 explicit __func(_Fp&& __f, _Alloc&& __a) 1611 __func<_Fp, _Alloc, _Rp(_ArgTypes...)>::__clone() const 1614 typedef typename __rebind_alloc_helper<__alloc_traits, __func>::type _Ap; 1617 unique_ptr<__func, _Dp> __hold(__a.allocate(1), _Dp(__a, 1)); [all …]
|
D | __threading_support | 174 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 325 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 328 return pthread_create(__t, 0, __func, __arg);
|
D | __debug | 91 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func);
|
/external/libcxx/src/support/win32/ |
D | thread_win32.cpp | 177 void *(*__func)(void *); member 186 auto *__func = __data->__func; in __libcpp_beginthreadex_thunk() local 189 return static_cast<unsigned>(reinterpret_cast<uintptr_t>(__func(__arg))); in __libcpp_beginthreadex_thunk() 196 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), in __libcpp_thread_create() 200 __data->__func = __func; in __libcpp_thread_create()
|
/external/llvm-project/libcxx/src/support/win32/ |
D | thread_win32.cpp | 176 void *(*__func)(void *); member 185 auto *__func = __data->__func; in __libcpp_beginthreadex_thunk() local 188 return static_cast<unsigned>(reinterpret_cast<uintptr_t>(__func(__arg))); in __libcpp_beginthreadex_thunk() 195 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), in __libcpp_thread_create() 199 __data->__func = __func; in __libcpp_thread_create()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | builtin-source-location.cpp | 23 const char *__func = __builtin_FUNCTION()) noexcept { in current() 25 __loc.set(__line, __col, __file, __func); in current() 32 const char *__func = __builtin_FUNCTION()) noexcept { in bad_current() 34 __loc.set(__line, __col, __file, __func); in bad_current()
|
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/ |
D | DynamicCallHelper.py | 64 self.__func = func 74 return self.__func(*self.__args)
|
/external/llvm-project/clang/lib/Headers/ |
D | __clang_hip_cmath.h | 129 #define __DEF_FUN1(__retty, __func) \ argument 131 __retty __func(float __x) { return __func##f(__x); } 134 #define __DEF_FUN2(__retty, __func) \ argument 136 __retty __func(float __x, float __y) { return __func##f(__x, __y); } 139 #define __DEF_FUN2_FI(__retty, __func) \ argument 141 __retty __func(float __x, int __y) { return __func##f(__x, __y); }
|
/external/e2fsprogs/e2fsck/ |
D | mtrace.h | 209 extern void mcheck __P ((void (*__func) __P ((void))));
|
/external/python/cpython2/Lib/test/ |
D | test_signal.py | 30 def ignoring_eintr(__func, *args, **kwargs): argument 32 return __func(*args, **kwargs)
|
/external/llvm-project/libcxx/src/ |
D | debug.cpp | 41 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func) { in __libcpp_set_debug_function() argument 42 __libcpp_debug_function = __func; in __libcpp_set_debug_function()
|
/external/libcxx/src/ |
D | debug.cpp | 33 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func) { in __libcpp_set_debug_function() argument 34 __libcpp_debug_function = __func; in __libcpp_set_debug_function()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | source_location.cpp | 22 const char *__func = __builtin_FUNCTION(), in current() 29 __loc.__m_func = __func; in current()
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | test-libandroid.so.abi | 13489 …<typedef-decl name='__func' type-id='488eea75' filepath='external/libcxx/include/functional' line=… 13677 …<typedef-decl name='__func' type-id='d43488f6' filepath='external/libcxx/include/functional' line=… 31586 …<typedef-decl name='__func' type-id='36dbc06a' filepath='external/libcxx/include/functional' line=… 31986 …<class-decl name='rebind<std::__1::__function::__func<(lambda at frameworks/base/native/andr… 31999 …<class-decl name='allocator<std::__1::__function::__func<(lambda at frameworks/base/native/a… 33961 …<typedef-decl name='__func' type-id='4c30ca01' filepath='external/libcxx/include/functional' line=… 34060 …<class-decl name='__func<(lambda at frameworks/base/native/android/surface_control.cpp:282:57),… 34066 …<function-decl name='__func' filepath='external/libcxx/include/functional' line='1583' column='1' … 34073 …<function-decl name='__func' mangled-name='_ZNSt3__110__function6__funcIZ33ASurfaceTransaction_set… 34081 …<function-decl name='__func' mangled-name='_ZNSt3__110__function6__funcIZ33ASurfaceTransaction_set… [all …]
|