Searched refs:f_ (Results 1 – 4 of 4) sorted by relevance
29 constexpr ScopeGuard(F&& f) : f_(std::forward<F>(f)), active_(true) {} in ScopeGuard()31 constexpr ScopeGuard(ScopeGuard&& that) noexcept : f_(std::move(that.f_)), active_(that.active_) { in ScopeGuard()36 constexpr ScopeGuard(ScopeGuard<Functor>&& that) : f_(std::move(that.f_)), active_(that.active_) { in ScopeGuard()41 if (active_) f_(); in ~ScopeGuard()57 F f_; variable
50 Fn f_;54 explicit NonCopyableFunctionTypeEraser(Fn f) : f_(std::move(f)) {} in NonCopyableFunctionTypeEraser()55 Ret operator()(Args... args) override { return f_(std::move(args)...); } in operator()59 std::unique_ptr<NonCopyableFunctionBase> f_;64 f_ = std::make_unique<NonCopyableFunctionTypeEraser<F>>(std::move(f)); in NonCopyableFunction()72 if (f_) return (*f_)(std::move(args)...); in operator()
71 std::function<void()> f_; member in aidl::android::hardware::confirmationui::__anone52fd07e0111::Finalize74 Finalize(std::function<void()> f) : f_(f) {} in Finalize()76 if (f_) f_(); in ~Finalize()78 void release() { f_ = {}; } in release()
258 explicit final_action(F f) : f_(std::move(f)) {} in final_action()259 ~final_action() { f_(); } in ~final_action()262 F f_;