Lines Matching full:directory
30 directory: The work directory where the objects were built.
38 directory_help = ('specify the output directory used for the kernel build '
39 '(defaults to the working directory)')
40 parser.add_argument('-d', '--directory', type=str, default='.',
58 'If nothing is specified, the current directory is searched')
64 os.path.abspath(args.directory),
67 args.paths if len(args.paths) > 0 else [args.directory])
70 def cmdfiles_in_dir(directory): argument
71 """Generate the iterator of .cmd files found under the directory.
73 Walk under the given directory, and yield every .cmd file found.
76 directory: The directory to search for .cmd files.
84 for dirpath, _, filenames in os.walk(directory):
161 root_directory: The directory that was searched for .cmd files. Usually
162 used directly in the "directory" entry in compile_commands.json.
185 'directory': root_directory,
192 """Walks through the directory and finds and parses .cmd files."""
193 log_level, directory, output, ar, paths = parse_arguments()
203 # If 'path' is a directory, handle all .cmd files under it.
224 entry = process_line(directory, result.group(1),