Home | History | Annotate | Download | only in fuzzer

Lines Matching refs:Fn

351 template <typename Fn>
354 explicit RunOnDestruction(Fn fn) : fn_(fn) {}
358 Fn fn_;
361 template <typename Fn>
362 RunOnDestruction<Fn> at_scope_exit(Fn fn) {
363 return RunOnDestruction<Fn>(fn);