Lines Matching full:files
25 …return subprocess.check_output(['git', 'ls-files'], cwd=IDF_PATH).decode('utf-8').strip().split('\…
64 Return all files in the repository matching the given regular expresion.
71 Return all the files in the repository matching the given CODEOWNERS pattern.
90 files = files_by_pattern(all_files, path_pattern)
91 if args.path in files:
104 files = files_by_regex(get_all_files(), re.compile(re_pattern))
105 for f in files:
143 files = files_by_pattern(all_files, path_pattern)
144 if not files:
145 add_error('no files matched by pattern {}'.format(path_pattern))
170 …made on a previous line i.e. '/xyz/**/*.py' to override the owner of the Python files inside /xyz/…
204 … "This command doesn't support files inside submodules, or files not added to git repository.",
216 … help='Print files in the repository for a given CODEOWNERS pattern. Useful when adding new rules.'
219 test_pattern.add_argument('pattern', help='Path pattern to get the list of files for')