Searched refs:matchesFileCache (Results 1 – 2 of 2) sorted by relevance
418 if (!matchesFileCache || matchesFileCache->first != &file) { in matchesFile()420 matchesFileCache.emplace(&file, filePat.match(file.archiveName)); in matchesFile()423 matchesFileCache.emplace(&file, false); in matchesFile()425 matchesFileCache.emplace(&file, filePat.match(file.getNameForScript())); in matchesFile()429 return matchesFileCache->second; in matchesFile()
201 mutable std::optional<std::pair<const InputFile *, bool>> matchesFileCache; variable