Home
last modified time | relevance | path

Searched refs:path_it (Results 1 – 1 of 1) sorted by relevance

/art/libarttools/
Dtools.cc100 std::filesystem::path::const_iterator path_it, in FullMatchRecursive() argument
102 if (pattern_it == pattern.end() && path_it == path.end()) { in FullMatchRecursive()
112 pattern, ++next_pattern_it, path, path_it, /*double_asterisk_visited=*/true) || in FullMatchRecursive()
113 (path_it != path.end() && FullMatchRecursive(pattern, pattern_it, path, ++path_it)); in FullMatchRecursive()
115 if (path_it == path.end()) { in FullMatchRecursive()
118 if (fnmatch(pattern_it->c_str(), path_it->c_str(), /*flags=*/0) != 0) { in FullMatchRecursive()
121 return FullMatchRecursive(pattern, ++pattern_it, path, ++path_it); in FullMatchRecursive()