Home
last modified time | relevance | path

Searched refs:__func_ (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dfunction.h159 _Fp __func_;
162 _LIBCPP_HIDE_FROM_ABI explicit __func(_Fp&& __f) : __func_(std::move(__f)) {}
163 _LIBCPP_HIDE_FROM_ABI explicit __func(const _Fp& __f) : __func_(__f) {}
165 …ROM_ABI_VIRTUAL __base<_Rp(_ArgTypes...)>* __clone() const override { return new __func(__func_); }
168 ::new ((void*)__p) __func(__func_);
171 _LIBCPP_HIDE_FROM_ABI_VIRTUAL void destroy() _NOEXCEPT override { __func_.~_Fp(); }
174 return std::__invoke_r<_Rp>(__func_, std::forward<_ArgTypes>(__arg)...);
179 return std::addressof(__func_);
436 _ErasedFunc* __func_;
454 …_LIBCPP_HIDE_FROM_ABI __policy_func() : __func_(__empty_func), __policy_(__policy::__create_empty(…
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__utility/
H A Dscope_guard.h27 _Func __func_; variable
30 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR explicit __scope_guard(_Func __func) : __func_(std::move(_… in __scope_guard()
31 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 ~__scope_guard() { __func_(); } in ~__scope_guard()
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dtransform_view.h81 _LIBCPP_NO_UNIQUE_ADDRESS __movable_box<_Fn> __func_; variable
90 : __func_(std::in_place, std::move(__func)), __base_(std::move(__base)) {} in transform_view()
218 noexcept(noexcept(std::invoke(*__parent_->__func_, *__current_))) {
219 return std::invoke(*__parent_->__func_, *__current_);
267 noexcept(noexcept(std::invoke(*__parent_->__func_, __current_[__n])))
270 return std::invoke(*__parent_->__func_, __current_[__n]);
/freebsd/contrib/llvm-project/libcxx/include/
H A Dfuture773 _Fp __func_;
782 inline __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f) : __func_(std::forward<_…
791 this->set_value(__func_());
803 _Fp __func_;
812 inline __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f) : __func_(std::forward<…
821 __func_();
834 _Fp __func_;
845 inline __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f) : __func_(std::forward<_Fp>(__…
852 this->set_value(__func_());
870 _Fp __func_;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dfuture718 _Fp __func_;
727 inline __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f) : __func_(std::forward<_…
736 this->set_value(__func_());
748 _Fp __func_;
757 inline __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f) : __func_(std::forward<…
766 __func_();
779 _Fp __func_;
790 inline __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f) : __func_(std::forward<_Fp>(__…
797 this->set_value(__func_());
815 _Fp __func_;
[all …]