Lines Matching full:files
7 Lists maintainers for files or commits. Similar in function to
92 help="List files in areas")
97 help="Name of area to list files in. If not specified, all "
98 "non-orphaned files are listed (all files that do not appear in "
115 help="List orphaned files (files that do not appear in any area)")
120 help="Limit to files under PATH")
171 # area._match_fn(path) tests if the path matches files and/or
172 # files-regex
174 _get_match_fn(area_dict.get("files"),
175 area_dict.get("files-regex"))
177 # Like area._match_fn(path), but for files-exclude and
178 # files-regex-exclude
180 _get_match_fn(area_dict.get("files-exclude"),
181 area_dict.get("files-regex-exclude"))
209 Returns a set() of Area instances for the areas that contain files that
268 # List all files that appear in some area
275 # List all files that appear in the given area
425 ok_keys = {"status", "maintainers", "collaborators", "inform", "files",
426 "files-exclude", "files-regex", "files-regex-exclude",
447 if not area_dict.keys() & {"files", "files-regex"}:
448 ferr("either 'files' or 'files-regex' (or both) must be specified "
451 for list_name in "maintainers", "collaborators", "inform", "files", \
452 "files-regex", "labels":
460 for files_key in "files", "files-exclude":
469 "match any files".format(glob_pattern, files_key,
480 for files_regex_key in "files-regex", "files-regex-exclude":
523 cmd = ["ls-files"]