Lines Matching refs:_Callable
798 template<typename _Callable, typename... _Args>
800 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args);
813 template<typename _Callable>
815 _Prepare_execution(_Callable& __c)
820 __once_call = [] { (*static_cast<_Callable*>(__once_callable))(); };
848 template<typename _Callable>
850 _Prepare_execution(_Callable& __c)
878 template<typename _Callable, typename... _Args>
880 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args)
884 std::__invoke(std::forward<_Callable>(__f),
944 template<typename _Callable, typename... _Args>
946 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args);
974 template<typename _Callable, typename... _Args>
976 call_once(once_flag& __once, _Callable&& __f, _Args&&... __args)
986 std::__invoke(std::forward<_Callable>(__f),