• Home
  • Raw
  • Download

Lines Matching refs:__f

845     explicit __deferred_assoc_state(_Fp&& __f);
855 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f)
856 : __func_(_VSTD::forward<_Fp>(__f))
891 explicit __deferred_assoc_state(_Fp&& __f);
901 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f)
902 : __func_(_VSTD::forward<_Fp>(__f))
939 explicit __async_assoc_state(_Fp&& __f);
949 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f)
950 : __func_(_VSTD::forward<_Fp>(__f))
993 explicit __async_assoc_state(_Fp&& __f);
1003 __async_assoc_state<void, _Fp>::__async_assoc_state(_Fp&& __f)
1004 : __func_(_VSTD::forward<_Fp>(__f))
1047 __make_deferred_assoc_state(_Fp&& __f);
1049 __make_deferred_assoc_state(_Fp __f);
1055 __make_async_assoc_state(_Fp&& __f);
1057 __make_async_assoc_state(_Fp __f);
1072 friend future<_R1> __make_deferred_assoc_state(_Fp&& __f);
1074 friend future<_R1> __make_async_assoc_state(_Fp&& __f);
1077 friend future<_R1> __make_deferred_assoc_state(_Fp __f);
1079 friend future<_R1> __make_async_assoc_state(_Fp __f);
1176 friend future<_R1> __make_deferred_assoc_state(_Fp&& __f);
1178 friend future<_R1> __make_async_assoc_state(_Fp&& __f);
1181 friend future<_R1> __make_deferred_assoc_state(_Fp __f);
1183 friend future<_R1> __make_async_assoc_state(_Fp __f);
1275 friend future<_R1> __make_deferred_assoc_state(_Fp&& __f);
1277 friend future<_R1> __make_async_assoc_state(_Fp&& __f);
1280 friend future<_R1> __make_deferred_assoc_state(_Fp __f);
1282 friend future<_R1> __make_async_assoc_state(_Fp __f);
1775 explicit __packaged_task_func(const _Fp& __f) : __f_(__f) {}
1777 explicit __packaged_task_func(_Fp&& __f) : __f_(_VSTD::move(__f)) {}
1779 __packaged_task_func(const _Fp& __f, const _Alloc& __a)
1780 : __f_(__f, __a) {}
1782 __packaged_task_func(_Fp&& __f, const _Alloc& __a)
1783 : __f_(_VSTD::move(__f), __a) {}
1838 __packaged_task_function(_Fp&& __f);
1840 __packaged_task_function(allocator_arg_t, const _Alloc& __a, _Fp&& __f);
1856 …ask_function<_Rp(_ArgTypes...)>::__packaged_task_function(__packaged_task_function&& __f) _NOEXCEPT
1858 if (__f.__f_ == nullptr)
1860 else if (__f.__f_ == (__base*)&__f.__buf_)
1863 __f.__f_->__move_to(__f_);
1867 __f_ = __f.__f_;
1868 __f.__f_ = nullptr;
1874 __packaged_task_function<_Rp(_ArgTypes...)>::__packaged_task_function(_Fp&& __f)
1882 ::new (__f_) _FF(_VSTD::forward<_Fp>(__f));
1890 ::new (__hold.get()) _FF(_VSTD::forward<_Fp>(__f), allocator<_FR>(__a));
1898 allocator_arg_t, const _Alloc& __a0, _Fp&& __f)
1907 ::new (__f_) _FF(_VSTD::forward<_Fp>(__f));
1921 ::new (__hold.get()) _FF(_VSTD::forward<_Fp>(__f), _Alloc(__a));
1928 __packaged_task_function<_Rp(_ArgTypes...)>::operator=(__packaged_task_function&& __f) _NOEXCEPT
1935 if (__f.__f_ == nullptr)
1937 else if (__f.__f_ == (__base*)&__f.__buf_)
1940 __f.__f_->__move_to(__f_);
1944 __f_ = __f.__f_;
1945 __f.__f_ = nullptr;
1961 __packaged_task_function<_Rp(_ArgTypes...)>::swap(__packaged_task_function& __f) _NOEXCEPT
1963 if (__f_ == (__base*)&__buf_ && __f.__f_ == (__base*)&__f.__buf_)
1970 __f.__f_->__move_to((__base*)&__buf_);
1971 __f.__f_->destroy();
1972 __f.__f_ = nullptr;
1974 __t->__move_to((__base*)&__f.__buf_);
1976 __f.__f_ = (__base*)&__f.__buf_;
1980 __f_->__move_to((__base*)&__f.__buf_);
1982 __f_ = __f.__f_;
1983 __f.__f_ = (__base*)&__f.__buf_;
1985 else if (__f.__f_ == (__base*)&__f.__buf_)
1987 __f.__f_->__move_to((__base*)&__buf_);
1988 __f.__f_->destroy();
1989 __f.__f_ = __f_;
1993 _VSTD::swap(__f_, __f.__f_);
2028 explicit packaged_task(_Fp&& __f) : __f_(_VSTD::forward<_Fp>(__f)) {}
2039 explicit packaged_task(allocator_arg_t, const _Allocator& __a, _Fp&& __f)
2040 : __f_(allocator_arg, __a, _VSTD::forward<_Fp>(__f)),
2159 explicit packaged_task(_Fp&& __f) : __f_(_VSTD::forward<_Fp>(__f)) {}
2170 explicit packaged_task(allocator_arg_t, const _Allocator& __a, _Fp&& __f)
2171 : __f_(allocator_arg, __a, _VSTD::forward<_Fp>(__f)),
2283 __make_deferred_assoc_state(_Fp&& __f)
2285 __make_deferred_assoc_state(_Fp __f)
2289 __h(new __deferred_assoc_state<_Rp, _Fp>(_VSTD::forward<_Fp>(__f)));
2296 __make_async_assoc_state(_Fp&& __f)
2298 __make_async_assoc_state(_Fp __f)
2302 __h(new __async_assoc_state<_Rp, _Fp>(_VSTD::forward<_Fp>(__f)));
2316 explicit __async_func(_Fp&& __f, _Args&&... __args)
2317 : __f_(_VSTD::move(__f), _VSTD::move(__args)...) {}
2320 __async_func(__async_func&& __f) : __f_(_VSTD::move(__f.__f_)) {}
2341 async(launch __policy, _Fp&& __f, _Args&&... __args)
2351 return _VSTD::__make_async_assoc_state<_Rp>(_BF(__decay_copy(_VSTD::forward<_Fp>(__f)),
2359 return _VSTD::__make_deferred_assoc_state<_Rp>(_BF(__decay_copy(_VSTD::forward<_Fp>(__f)),
2367 async(_Fp&& __f, _Args&&... __args)
2369 return _VSTD::async(launch::any, _VSTD::forward<_Fp>(__f),
2390 shared_future(future<_Rp>&& __f) _NOEXCEPT : __state_(__f.__state_)
2391 {__f.__state_ = nullptr;}
2464 shared_future(future<_Rp&>&& __f) _NOEXCEPT : __state_(__f.__state_)
2465 {__f.__state_ = nullptr;}
2538 shared_future(future<void>&& __f) _NOEXCEPT : __state_(__f.__state_)
2539 {__f.__state_ = nullptr;}