Lines Matching refs:path
307 def is_file_excluded(self, path, exclude_wildcards):
308 """Whether the given file path is excluded."""
312 if fnmatch.fnmatch(path, pattern):
339 for path in accumulator:
340 if self.is_file_excluded(path, exclude_wildcards):
341 exc_files.append(path)
343 inc_files.append(path)
364 return list(path for path in accumulator
365 if not self.is_file_excluded(path, exclude_wildcards))