Lines Matching refs:functor
322 template <typename Functor>
323 void ForEachFileInDir(const std::string& dirname, Functor functor) {
338 functor(entry->d_name);
341 template <typename Functor>
344 Functor functor) {
377 functor(filename);
383 template <typename Functor>
384 void ForEachFileInPath(const std::string& path, Functor functor) {
387 ForEachFileInDir(path, functor);
390 functor);