Searched refs:f_ (Results 1 – 4 of 4) sorted by relevance
29 ScopeGuard(F&& f) : f_(std::forward<F>(f)), active_(true) {} in ScopeGuard()31 ScopeGuard(ScopeGuard&& that) noexcept : f_(std::move(that.f_)), active_(that.active_) { in ScopeGuard()36 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()
80 std::function<void()> f_; member in android::hardware::confirmationui::V1_0::implementation::__anon124ddc250111::Finalize83 Finalize(std::function<void()> f) : f_(f) {} in Finalize()85 if (f_) f_(); in ~Finalize()87 void release() { f_ = {}; } in release()
245 explicit final_action(F f) : f_(move(f)) {} in final_action()246 ~final_action() { f_(); } in ~final_action()249 F f_;