Lines Matching defs:f
114 ftl::Function<void()> f; in TEST() local
146 ftl::Function<int()> f; in TEST() local
201 auto f = ftl::Function([] { return 1; }); in TEST() local
232 auto check = [](Function f) { return f(0); }; in TEST()
264 auto f = ftl::make_function<&Observer::setCalled>(&observer); in TEST() local
279 const auto f = ftl::make_function<&Observer::setCalled>(&observer); in TEST() local
294 const auto f = ftl::make_function<&Observer::setCalled>(&observer); in TEST() local
304 auto f = ftl::make_function([](int a, int b) { return a + b; }); in TEST() local
310 auto f = ftl::make_function([&called](int a, int b) { in TEST() local
320 auto f = ftl::make_function([&called](int a, int b) mutable { in TEST() local
333 auto f = ftl::make_function( in TEST() local
350 auto f = ftl::make_function<&std::make_unique<int, int>>(); in TEST() local