HomeSort by relevance Sort by last modified time
    Searched full:_callable (Results 1 - 25 of 39) sorted by null

1 2

  /external/libcxx/include/
mutex 438 template<class _Callable, class... _Args>
440 void call_once(once_flag&, _Callable&&, _Args&&...);
444 template<class _Callable>
446 void call_once(once_flag&, _Callable&);
448 template<class _Callable>
450 void call_once(once_flag&, const _Callable&);
467 template<class _Callable, class... _Args>
469 void call_once(once_flag&, _Callable&&, _Args&&...);
471 template<class _Callable>
473 void call_once(once_flag&, _Callable&)
    [all...]
future     [all...]
type_traits     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
thread 106 template<typename _Callable>
109 _Callable _M_func;
111 _Impl(_Callable&& __f) : _M_func(std::forward<_Callable>(__f))
131 template<typename _Callable, typename... _Args>
133 thread(_Callable&& __f, _Args&&... __args)
136 std::forward<_Callable>(__f),
188 template<typename _Callable>
189 shared_ptr<_Impl<_Callable>>
190 _M_make_routine(_Callable&& __f
    [all...]
mutex 741 template<typename _Callable, typename... _Args>
743 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args);
750 template<typename _Callable>
754 (*(_Callable*)__once_callable)();
769 template<typename _Callable, typename... _Args>
771 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args)
774 auto __bound_functor = std::__bind_simple(std::forward<_Callable>(__f),
780 auto __callable = std::__bind_simple(std::forward<_Callable>(__f),
functional     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
thread 106 template<typename _Callable>
109 _Callable _M_func;
111 _Impl(_Callable&& __f) : _M_func(std::forward<_Callable>(__f))
131 template<typename _Callable, typename... _Args>
133 thread(_Callable&& __f, _Args&&... __args)
136 std::forward<_Callable>(__f),
188 template<typename _Callable>
189 shared_ptr<_Impl<_Callable>>
190 _M_make_routine(_Callable&& __f
    [all...]
mutex 741 template<typename _Callable, typename... _Args>
743 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args);
750 template<typename _Callable>
754 (*(_Callable*)__once_callable)();
769 template<typename _Callable, typename... _Args>
771 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args)
774 auto __bound_functor = std::__bind_simple(std::forward<_Callable>(__f),
780 auto __callable = std::__bind_simple(std::forward<_Callable>(__f),
functional     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
thread 106 template<typename _Callable>
109 _Callable _M_func;
111 _Impl(_Callable&& __f) : _M_func(std::forward<_Callable>(__f))
131 template<typename _Callable, typename... _Args>
133 thread(_Callable&& __f, _Args&&... __args)
136 std::forward<_Callable>(__f),
188 template<typename _Callable>
189 shared_ptr<_Impl<_Callable>>
190 _M_make_routine(_Callable&& __f
    [all...]
mutex 741 template<typename _Callable, typename... _Args>
743 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args);
750 template<typename _Callable>
754 (*(_Callable*)__once_callable)();
769 template<typename _Callable, typename... _Args>
771 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args)
774 auto __bound_functor = std::__bind_simple(std::forward<_Callable>(__f),
780 auto __callable = std::__bind_simple(std::forward<_Callable>(__f),
functional     [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
thread 106 template<typename _Callable>
109 _Callable _M_func;
111 _Impl(_Callable&& __f) : _M_func(std::forward<_Callable>(__f))
131 template<typename _Callable, typename... _Args>
133 thread(_Callable&& __f, _Args&&... __args)
136 std::forward<_Callable>(__f),
188 template<typename _Callable>
189 shared_ptr<_Impl<_Callable>>
190 _M_make_routine(_Callable&& __f
    [all...]
mutex 706 template<typename _Callable, typename... _Args>
708 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args);
715 template<typename _Callable>
719 (*(_Callable*)__once_callable)();
734 template<typename _Callable, typename... _Args>
736 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args)
739 auto __bound_functor = std::__bind_simple(std::forward<_Callable>(__f),
745 auto __callable = std::__bind_simple(std::forward<_Callable>(__f),
functional     [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
mutex 436 template<class _Callable, class... _Args>
438 void call_once(once_flag&, _Callable&&, _Args&&...);
442 template<class _Callable>
444 void call_once(once_flag&, _Callable);
461 template<class _Callable, class... _Args>
463 void call_once(once_flag&, _Callable&&, _Args&&...);
465 template<class _Callable>
467 void call_once(once_flag&, _Callable);
538 template<class _Callable, class... _Args>
541 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args
    [all...]
future     [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
mutex 436 template<class _Callable, class... _Args>
438 void call_once(once_flag&, _Callable&&, _Args&&...);
442 template<class _Callable>
444 void call_once(once_flag&, _Callable);
461 template<class _Callable, class... _Args>
463 void call_once(once_flag&, _Callable&&, _Args&&...);
465 template<class _Callable>
467 void call_once(once_flag&, _Callable);
538 template<class _Callable, class... _Args>
541 call_once(once_flag& __flag, _Callable&& __func, _Args&&... __args
    [all...]
future     [all...]
  /external/chromium-trace/catapult/telemetry/third_party/mock/
mock.py 201 if not _callable(func):
229 def _callable(obj): function
265 if not _callable(original):
920 if _callable(obj):
1012 if not _callable(effect):
    [all...]
  /external/chromium-trace/catapult/third_party/mock/
mock.py 201 if not _callable(func):
229 def _callable(obj): function
265 if not _callable(original):
920 if _callable(obj):
1012 if not _callable(effect):
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
argparse.py 95 def _callable(obj): function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
argparse.py 95 def _callable(obj): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
argparse.py 95 def _callable(obj): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
argparse.py 95 def _callable(obj): function
    [all...]

Completed in 2060 milliseconds

1 2