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")
198 # area._match_fn(path) tests if the path matches files and/or
199 # files-regex
201 _get_match_fn(area_dict.get("files"),
202 area_dict.get("files-regex"))
204 # Like area._match_fn(path), but for files-exclude and
205 # files-regex-exclude
207 _get_match_fn(area_dict.get("files-exclude"),
208 area_dict.get("files-regex-exclude"))
236 Returns a set() of Area instances for the areas that contain files that
325 # List all files that appear in some area
332 # List all files that appear in the given area
486 ok_keys = {"status", "maintainers", "collaborators", "inform", "files",
487 "files-exclude", "files-regex", "files-regex-exclude",
508 if not area_dict.keys() & {"files", "files-regex"}:
509 ferr("either 'files' or 'files-regex' (or both) must be specified "
512 for list_name in "maintainers", "collaborators", "inform", "files", \
513 "files-regex", "labels", "tags", "tests":
521 for files_key in "files", "files-exclude":
530 "match any files".format(glob_pattern, files_key,
540 for files_regex_key in "files-regex", "files-regex-exclude":
583 cmd = ["ls-files"]