| 569 | std::string RelativePath(Path::Builtin path) { return Path(path).RelativePath(); } |
| 570 | |
| 571 | bool Found(const std::vector<Path>& data, const Path& path) { |
| 572 | for (std::size_t i = 0, n = data.size(); i < n; ++i) { |
| 573 | if (data[i] == path) { |
| 574 | return true; |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | return false; |
| 579 | } |
| 580 | |
| 581 | std::vector<Path> CollectFilePaths(const Path& path, const char* filter) { |
| 582 | std::vector<Path> result; |
no outgoing calls
no test coverage detected