Home
last modified time | relevance | path

Searched refs:__func (Results 1 – 10 of 10) sorted by relevance

/external/libcxx/include/
D__functional_03100 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 …]
Dmutex660 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);
Dfunctional1572 // __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_support174 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__debug91 bool __libcpp_set_debug_function(__libcpp_debug_function_type __func);
/external/libcxx/src/support/win32/
Dthread_win32.cpp177 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/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/
DDynamicCallHelper.py64 self.__func = func
74 return self.__func(*self.__args)
/external/e2fsprogs/e2fsck/
Dmtrace.h209 extern void mcheck __P ((void (*__func) __P ((void))));
/external/python/cpython2/Lib/test/
Dtest_signal.py30 def ignoring_eintr(__func, *args, **kwargs): argument
32 return __func(*args, **kwargs)
/external/libcxx/src/
Ddebug.cpp33 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()