Lines Matching refs:_Func
468 …_IsCallable(_Function _Func, int, int, int) -> decltype(_Func(stdx::declval<task<_ReturnType>*>())…
469 …to _IsCallable(_Function _Func, int, int, ...) -> decltype(_Func(stdx::declval<_ReturnType*>()), s…
470 …ame _Function> auto _IsCallable(_Function _Func, int, ...) -> decltype(_Func(), std::true_type()) …
913 …pename _Function> auto _IsVoidConversionHelper(_Function _Func, int) -> typename decltype(_Func(_T…
914 template <typename _Function> std::false_type _IsVoidConversionHelper(_Function _Func, ...);
1062 …static void _ScheduleFuncWithAutoInline(const std::function<HRESULT(void)> & _Func, _TaskInliningM…
1065 …s::_TaskCollection_t::_RunTask(&_TaskProcThunk::_Bridge, new _TaskProcThunk(_Func), _InliningMode);
1070 _Func();
1074 …Task(reinterpret_cast<Concurrency::TaskProc>(&_TaskProcThunk::_Bridge), new _TaskProcThunk(_Func));
1182 HRESULT _CallInContext(_CallbackFunction _Func) const
1186 _Func();
1192 callData.pUserDefined = reinterpret_cast<void *>(&_Func);
3627 … std::function<HRESULT(_Unit_type*)> _MakeVoidToUnitFunc(const std::function<HRESULT(void)>& _Func)
3629 …return [=](_Unit_type* retVal) -> HRESULT { HRESULT hr = _Func(); *retVal = _Unit_type(); return h…
3633 …function<HRESULT(_Unit_type, _Type*)> _MakeUnitToTFunc(const std::function<HRESULT(_Type*)>& _Func)
3635 … return [=](_Unit_type, _Type* retVal) -> HRESULT { HRESULT hr = _Func(retVal); return hr; };
3639 …:function<HRESULT(_Type, _Unit_type*)> _MakeTToUnitFunc(const std::function<HRESULT(_Type)>& _Func)
3641 …return[=](_Type t, _Unit_type* retVal) -> HRESULT { HRESULT hr = _Func(t); *retVal = _Unit_type();…
3644 …on<HRESULT(_Unit_type, _Unit_type*)> _MakeUnitToUnitFunc(const std::function<HRESULT(void)>& _Func)
3646 …return [=](_Unit_type, _Unit_type* retVal) -> HRESULT { HRESULT hr = _Func(); *retVal = _Unit_type…
4443 …auto then(const _Function& _Func) const -> typename details::_ContinuationTypeTraits<_Function, _R…
4448 return _ThenImpl<_ReturnType, _Function>(_Func, _TaskOptions);
4450 …auto _ContinuationTask = _ThenImpl<_ReturnType, _Function>(_Func, nullptr, task_continuation_conte…
4484 …auto then(const _Function& _Func, task_options _TaskOptions) const -> typename details::_Continuat…
4486 …auto then(const _Function& _Func, Concurrency::cancellation_token _CancellationToken) const -> typ…
4491 return _ThenImpl<_ReturnType, _Function>(_Func, _TaskOptions);
4493 …auto _ContinuationTask = _ThenImpl<_ReturnType, _Function>(_Func, _CancellationToken._GetImplValue…
4526 …auto then(const _Function& _Func, task_continuation_context _ContinuationContext) const -> typenam…
4528 … auto _ContinuationTask = _ThenImpl<_ReturnType, _Function>(_Func, nullptr, _ContinuationContext);
4564 …auto then(const _Function& _Func, Concurrency::cancellation_token _CancellationToken, task_continu…
4569 return _ThenImpl<_ReturnType, _Function>(_Func, _TaskOptions);
4571 …auto _ContinuationTask = _ThenImpl<_ReturnType, _Function>(_Func, _CancellationToken._GetImplValue…
4779 auto _Then(const _Function& _Func, Concurrency::details::_CancellationTokenState *_PTokenState,
4785 …return _ThenImpl<_ReturnType, _Function>(_Func, _PTokenState, task_continuation_context::use_defau…
4788 …auto _Then(const _Function& _Func, Concurrency::details::_CancellationTokenState *_PTokenState, bo…
4791 …return _ThenImpl<_ReturnType, _Function>(_Func, _PTokenState, task_continuation_context::use_defau…
4804 static auto _Perform(std::function<HRESULT(_RetType*)> _Func) -> decltype(_Func)
4806 return _Func;
4814 …static auto _Perform(std::function<HRESULT(void)> _Func) -> decltype(details::_MakeVoidToUnitFunc(…
4816 return details::_MakeVoidToUnitFunc(_Func);
4832 template <typename _Func, typename _RetArg>
4833 …auto _LogWorkItemAndInvokeUserLambda(_Func && _func, _RetArg && _retArg) const -> decltype(_func(s…
4964 static auto _Perform(std::function<HRESULT(_InpType, _OutType*)> _Func) -> decltype(_Func)
4966 return _Func;
4974 …to _Perform(std::function<HRESULT(_OutType*)> _Func) -> decltype(details::_MakeUnitToTFunc<_OutTyp…
4976 return details::_MakeUnitToTFunc<_OutType>(_Func);
4984 … auto _Perform(std::function<HRESULT(_InType)> _Func) -> decltype(details::_MakeTToUnitFunc<_InTyp…
4986 return details::_MakeTToUnitFunc<_InType>(_Func);
4994 …static auto _Perform(std::function<HRESULT(void)> _Func) -> decltype(details::_MakeUnitToUnitFunc(…
4996 return details::_MakeUnitToUnitFunc(_Func);
5014 …const _Function & _Func, const task_continuation_context & _Context, details::_TaskInliningMode _I…
5020 , _M_function(_Func)
5022 … _M_ancestorTaskImpl(_AncestorImpl), _PPLTaskHandle(_ContinuationImpl), _M_function(_Func)
5034 template <typename _Func, typename _Arg, typename _RetArg>
5035 …auto _LogWorkItemAndInvokeUserLambda(_Func && _func, _Arg && _value, _RetArg && _retArg) const -> …
5323 void _TaskInitWithFunctor(const _Function& _Func)
5332 …turnType, _Function, typename _Async_type_traits::_AsyncKind>(_GetImpl(), _Func), Concurrency::det…
5381 void _TaskInitMaybeFunctor(_Function & _Func, std::true_type)
5383 _TaskInitWithFunctor<_ReturnType, _Function>(_Func);
5396 …auto _ThenImpl(const _Function& _Func, const task_options& _TaskOptions) const -> typename details…
5406 …return _ThenImpl<_InternalReturnType, _Function>(_Func, _PTokenState, _TaskOptions.get_continuatio…
5414 …auto _ThenImpl(const _Function& _Func, Concurrency::details::_CancellationTokenState *_PTokenState…
5417 …auto _ThenImpl(const _Function& _Func, Concurrency::details::_CancellationTokenState *_PTokenState…
5466 _GetImpl(), _ContinuationTask._GetImpl(), _Func, _ContinuationContext, _InliningMode));
5742 …auto then(const _Function& _Func) const -> typename details::_ContinuationTypeTraits<_Function, vo…
5744 …auto _ContinuationTask = _M_unitTask._ThenImpl<void, _Function>(_Func, nullptr, task_continuation_…
5777 …auto then(const _Function& _Func, task_options _TaskOptions = task_options()) const -> typename de…
5780 return _M_unitTask._ThenImpl<void, _Function>(_Func, _TaskOptions);
5783 …auto then(const _Function& _Func, Concurrency::cancellation_token _CancellationToken) const -> typ…
5785 …auto _ContinuationTask = _M_unitTask._ThenImpl<void, _Function>(_Func, _CancellationToken._GetImpl…
5816 …auto then(const _Function& _Func, task_continuation_context _ContinuationContext) const -> typenam…
5818 …auto _ContinuationTask = _M_unitTask._ThenImpl<void, _Function>(_Func, nullptr, _ContinuationConte…
5856 …auto then(const _Function& _Func, Concurrency::cancellation_token _CancellationToken, task_continu…
5860 return _M_unitTask._ThenImpl<void, _Function>(_Func, _TaskOptions);
5863 …auto then(const _Function& _Func, Concurrency::cancellation_token _CancellationToken, task_continu…
5865 …auto _ContinuationTask = _M_unitTask._ThenImpl<void, _Function>(_Func, _CancellationToken._GetImpl…
6029 auto _Then(const _Function& _Func, Concurrency::details::_CancellationTokenState *_PTokenState,
6035 …return _M_unitTask._ThenImpl<void, _Function>(_Func, _PTokenState, task_continuation_context::use_…
6038 auto _Then(const _Function& _Func, Concurrency::details::_CancellationTokenState *_PTokenState,
6041 …return _M_unitTask._ThenImpl<void, _Function>(_Func, _PTokenState, task_continuation_context::use_…
6076 void _TaskInitMaybeFunctor(_Function & _Func, std::true_type)
6078 _M_unitTask._TaskInitWithFunctor<void, _Function>(_Func);
6128 …auto _GetTaskType(_Ty _Func, std::true_type) -> decltype(_GetUnwrappedReturnType(stdx::declval<_Fu…
6500 …static task<_ReturnType> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_s…
6504 return task<_ReturnType>(_Func(_pRet), _taskOptinos);
6508 …static task<_ReturnType> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_…
6512 return task<_ReturnType>(_Func(_Cts.get_token(), _pRet), _taskOptinos);
6516 …static task<_ReturnType> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress…
6520 return task<_ReturnType>(_Func(_Progress, _pRet), _taskOptinos);
6524 …static task<_ReturnType> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progres…
6528 return task<_ReturnType>(_Func(_Progress, _Cts.get_token(), _pRet), _taskOptinos);
6532 …static task<_ReturnType> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_s…
6534 return task<_ReturnType>(_Func(_pRet), _Cts.get_token());
6538 …static task<_ReturnType> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_…
6540 return task<_ReturnType>(_Func(_Cts.get_token(), _pRet), _Cts.get_token());
6544 …static task<_ReturnType> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress…
6546 return task<_ReturnType>(_Func(_Progress, _pRet), _Cts.get_token());
6550 …static task<_ReturnType> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progres…
6552 return task<_ReturnType>(_Func(_Progress, _Cts.get_token(), _pRet), _Cts.get_token());
6562 …static task<void> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_source _…
6566 return task<void>(_Func(), _taskOptinos);
6570 …static task<void> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_source …
6574 return task<void>(_Func(_Cts.get_token()), _taskOptinos);
6578 …static task<void> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress, Concu…
6582 return task<void>(_Func(_Progress), _taskOptinos);
6586 …static task<void> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progress, Conc…
6590 return task<void>(_Func(_Progress, _Cts.get_token()), _taskOptinos);
6594 …static task<void> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_source _…
6596 return task<void>(_Func(), _Cts.get_token());
6600 …static task<void> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_source …
6602 return task<void>(_Func(_Cts.get_token()), _Cts.get_token());
6606 …static task<void> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress, Concu…
6608 return task<void>(_Func(_Progress), _Cts.get_token());
6612 …static task<void> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progress, Conc…
6614 return task<void>(_Func(_Progress, _Cts.get_token()), _Cts.get_token());
6647 …static task<_ReturnType> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_s…
6654 HRESULT hr = _Func(_pRet);
6662 …static task<_ReturnType> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_…
6669 HRESULT hr = _Func(_Cts.get_token(), _pRet);
6676 …static task<_ReturnType> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress…
6683 HRESULT hr = _Func(_Progress, _pRet);
6690 …static task<_ReturnType> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progres…
6697 HRESULT hr = _Func(_Progress, _Cts.get_token(), _pRet);
6704 …static task<_ReturnType> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_s…
6708 HRESULT hr = _Func(_pRet);
6715 …static task<_ReturnType> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_…
6719 HRESULT hr = _Func(_Cts.get_token(), _pRet);
6726 …static task<_ReturnType> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress…
6730 HRESULT hr = _Func(_Progress, _pRet);
6737 …static task<_ReturnType> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progres…
6741 HRESULT hr = _Func(_Progress, _Cts.get_token(), _pRet);
6754 …static task<void> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_source _…
6761 return _Func();
6766 …static task<void> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_source …
6773 return _Func(_Cts.get_token());
6778 …static task<void> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress, Concu…
6785 return _Func(_Progress);
6790 …static task<void> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progress, Conc…
6797 return _Func(_Progress, _Cts.get_token());
6802 …static task<void> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_source _…
6806 return _Func();
6811 …static task<void> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_source …
6815 return _Func(_Cts.get_token());
6820 …static task<void> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress, Concu…
6824 return _Func(_Progress);
6829 …static task<void> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progress, Conc…
6833 return _Func(_Progress, _Cts.get_token());
6847 …static task<_ReturnType> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_s…
6849 …static task<_ReturnType> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_s…
6853 _Func(&_task);
6859 …static task<_ReturnType> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_…
6861 …static task<_ReturnType> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_…
6865 _Func(_Cts.get_token(), &_task);
6871 …static task<_ReturnType> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress…
6873 …static task<_ReturnType> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress…
6877 _Func(_Progress, &_task);
6883 …static task<_ReturnType> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progres…
6885 …static task<_ReturnType> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progres…
6889 _Func(_Progress, _Cts.get_token(), &_task);
6899 …static task<void> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_source _…
6901 …static task<void> _GenerateTask_0(const _Function& _Func, Concurrency::cancellation_token_source _…
6905 _Func(&_task);
6911 …static task<void> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_source …
6913 …static task<void> _GenerateTask_1C(const _Function& _Func, Concurrency::cancellation_token_source …
6917 _Func(_Cts.get_token(), &_task);
6923 …static task<void> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress, Concu…
6925 …static task<void> _GenerateTask_1P(const _Function& _Func, const _ProgressObject& _Progress, Concu…
6929 _Func(_Progress, &_task);
6935 …static task<void> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progress, Conc…
6937 …static task<void> _GenerateTask_2PC(const _Function& _Func, const _ProgressObject& _Progress, Conc…
6941 _Func(_Progress, _Cts.get_token(), &_task);
6956 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
6957 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _callstack))
6960 return _Generator::_GenerateTask_0(_Func, _Cts, _callstack);
6964 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
6965 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet, _callstack))
6967 return _Generator::_GenerateTask_0(_Func, _Cts, _pRet, _callstack);
6971 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
6972 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts))
6975 return _Generator::_GenerateTask_0(_Func, _Cts);
6979 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
6980 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet))
6982 return _Generator::_GenerateTask_0(_Func, _Cts, _pRet);
6992 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
6993 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _callstack))
6995 return _Generator::_GenerateTask_1C(_Func, _Cts, _callstack);
6999 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
7000 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet, _callstack))
7002 return _Generator::_GenerateTask_1C(_Func, _Cts, _pRet, _callstack);
7006 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
7007 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts))
7009 return _Generator::_GenerateTask_1C(_Func, _Cts);
7013 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
7014 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet))
7016 return _Generator::_GenerateTask_1C(_Func, _Cts, _pRet);
7026 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
7027 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _callstack))
7029 …return _Generator::_GenerateTask_1P(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr)…
7033 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
7034 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet, _callstack))
7036 …return _Generator::_GenerateTask_1P(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr)…
7040 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
7041 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts))
7043 …return _Generator::_GenerateTask_1P(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr)…
7047 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
7048 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet))
7050 …return _Generator::_GenerateTask_1P(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr)…
7060 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
7061 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _callstack))
7063 …return _Generator::_GenerateTask_2PC(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr…
7067 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
7068 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet, _callstack))
7070 …return _Generator::_GenerateTask_2PC(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr…
7074 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t…
7075 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts))
7077 …return _Generator::_GenerateTask_2PC(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr…
7081 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_…
7082 -> decltype(_Generator::_GenerateTask_0(_Func, _Cts, _pRet))
7084 …return _Generator::_GenerateTask_2PC(_Func, progress_reporter<_ProgressType>::_CreateReporter(_Ptr…
7135 …static task<typename _TaskTraits::_TaskRetType> _Generate_Task(const _Function& _Func, _ClassPtr _…
7137 …ator::_GenerateTask<_Function, _ClassPtr, _ProgressType_abi, _ReturnType>(_Func, _Ptr, _Cts, _pRet…
7140 …static task<typename _TaskTraits::_TaskRetType> _Generate_Task(const _Function& _Func, _ClassPtr _…
7142 …ator::_GenerateTask<_Function, _ClassPtr, _ProgressType_abi, _ReturnType>(_Func, _Ptr, _Cts, _pRet…
7164 …static task<typename _TaskTraits::_TaskRetType> _Generate_Task(const _Function& _Func, _ClassPtr _…
7166 …enerator::_GenerateTask<_Function, _ClassPtr, _ProgressType, _ReturnType>(_Func, _Ptr, _Cts, _pRet…
7169 …static task<typename _TaskTraits::_TaskRetType> _Generate_Task(const _Function& _Func, _ClassPtr _…
7171 …enerator::_GenerateTask<_Function, _ClassPtr, _ProgressType, _ReturnType>(_Func, _Ptr, _Cts, _pRet…
7195 …static task<void> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation…
7197 …askGenerator::_GenerateTaskNoRet<_Function, _ClassPtr, _ProgressType_abi>(_Func, _Ptr, _Cts, _call…
7200 …static task<task<void>> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancel…
7202 …return _TaskGenerator::_GenerateTask<_Function, _ClassPtr, _ProgressType_abi>(_Func, _Ptr, _Cts, _…
7206 …static task<void> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation…
7208 …urn _TaskGenerator::_GenerateTaskNoRet<_Function, _ClassPtr, _ProgressType_abi>(_Func, _Ptr, _Cts);
7211 …static task<task<void>> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancel…
7213 …return _TaskGenerator::_GenerateTask<_Function, _ClassPtr, _ProgressType_abi>(_Func, _Ptr, _Cts, _…
7235 …static task<void> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation…
7237 …return _TaskGenerator::_GenerateTaskNoRet<_Function, _ClassPtr, _ProgressType>(_Func, _Ptr, _Cts, …
7240 …static task<task<void>> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancel…
7242 …return _TaskGenerator::_GenerateTask<_Function, _ClassPtr, _ProgressType>(_Func, _Ptr, _Cts, _pRet…
7246 …static task<void> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation…
7248 … return _TaskGenerator::_GenerateTaskNoRet<_Function, _ClassPtr, _ProgressType>(_Func, _Ptr, _Cts);
7251 …static task<task<void>> _Generate_Task(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancel…
7253 …return _TaskGenerator::_GenerateTask<_Function, _ClassPtr, _ProgressType>(_Func, _Ptr, _Cts, _pRet…
7909 …_AsyncTaskGeneratorThunk(const _Function& _Func, const _TaskCreationCallstack &_callstack) : _M_fu…
7911 _AsyncTaskGeneratorThunk(const _Function& _Func) : _M_func(_Func)
7994 details::_AsyncTaskGeneratorThunk<_Function>* create_async(const _Function& _Func)
7996 …static_assert(std::is_same<decltype(details::_IsValidCreateAsync<_ReturnType>(_Func, 0, 0, 0, 0, 0…
7999 …Info = Microsoft::WRL::Make<details::_AsyncTaskGeneratorThunk<_Function>>(_Func, _CAPTURE_CALLSTAC…
8001 …_Function>> _AsyncInfo = Microsoft::WRL::Make<details::_AsyncTaskGeneratorThunk<_Function>>(_Func);
8107 …void _WhenAllContinuationWrapper(_RunAllParam<_ElementType>* _PParam, _Function _Func, task<_TaskT…
8111 _Func();
8230 auto _Func = [_PParamCopy, _IndexCopy, &_ResultTask](){
8234 auto _Func = [_PParam, _Index, &_ResultTask](){
8239 _WhenAllContinuationWrapper(_PParam, _Func, _ResultTask);
8343 auto _Func = [_PParamCopy, _IndexCopy, &_ResultTask]() {
8347 auto _Func = [_PParam, _Index, &_ResultTask]() {
8352 _WhenAllContinuationWrapper(_PParam, _Func, _ResultTask);
8433 auto _Func = []() -> HRESULT { return S_OK; };
8434 _WhenAllContinuationWrapper(_PParam, _Func, _ResultTask);
8507 auto _Func = [_PParamCopy, &_ResultTask]() {
8512 auto _Func = [_PParam, &_ResultTask]() {
8518 _WhenAllContinuationWrapper(_PParam, _Func, _ResultTask);
8530 auto _Func = [_PParamCopy, &_ResultTask]() {
8535 auto _Func = [_PParam, &_ResultTask]() {
8540 _WhenAllContinuationWrapper(_PParam, _Func, _ResultTask);
8810 …nuationWrapper(_RunAnyParam<_CompletionType> * _PParam, const _Function & _Func, task<_TaskType>& …
8815 _Func();
8921 auto _Func = [&_ResultTask, _PParamCopy, _IndexCopy]() {
8925 auto _Func = [&_ResultTask, _PParam, index]() {
8929 _WhenAnyContinuationWrapper(_PParam, _Func, _ResultTask);
9003 auto _Func = [&_ResultTask, _PParamCopy, _IndexCopy]() {
9007 auto _Func = [&_ResultTask, _PParam, index]() {
9011 _WhenAnyContinuationWrapper(_PParam, _Func, _ResultTask);
9173 auto _Func = [&_ResultTask, _PParamCopy]() {
9177 auto _Func = [&_ResultTask, _PParam]() {
9181 _WhenAnyContinuationWrapper(_PParam, _Func, _ResultTask);
9249 auto _Func = [&_ResultTask, _PParamCopy]() {
9254 auto _Func = [&_ResultTask, _PParam]() {
9259 _WhenAnyContinuationWrapper(_PParam, _Func, _ResultTask);
9271 auto _Func = [&_ResultTask, _PParamCopy]() {
9279 auto _Func = [&_ResultTask, _PParam]() {
9287 _WhenAnyContinuationWrapper(_PParam, _Func, _ResultTask);
9381 auto _Func = [&_ResultTask, _PParam1]() {
9384 _WhenAnyContinuationWrapper(_PParam, _Func, _ResultTask);