Lines Matching refs:__other
2050 packaged_task(packaged_task&& __other) _NOEXCEPT
2051 : __f_(_VSTD::move(__other.__f_)), __p_(_VSTD::move(__other.__p_)) {}
2053 packaged_task& operator=(packaged_task&& __other) _NOEXCEPT
2055 __f_ = _VSTD::move(__other.__f_);
2056 __p_ = _VSTD::move(__other.__p_);
2060 void swap(packaged_task& __other) _NOEXCEPT
2062 __f_.swap(__other.__f_);
2063 __p_.swap(__other.__p_);
2181 packaged_task(packaged_task&& __other) _NOEXCEPT
2182 : __f_(_VSTD::move(__other.__f_)), __p_(_VSTD::move(__other.__p_)) {}
2184 packaged_task& operator=(packaged_task&& __other) _NOEXCEPT
2186 __f_ = _VSTD::move(__other.__f_);
2187 __p_ = _VSTD::move(__other.__p_);
2191 void swap(packaged_task& __other) _NOEXCEPT
2193 __f_.swap(__other.__f_);
2194 __p_.swap(__other.__p_);