Lines Matching full:directory
24 # The tools/ directory adopts a different build system, and produces .cmd
33 directory: The work directory where the objects were built.
41 directory_help = ('specify the output directory used for the kernel build '
42 '(defaults to the working directory)')
43 parser.add_argument('-d', '--directory', type=str, default='.',
61 'If nothing is specified, the current directory is searched')
67 os.path.abspath(args.directory),
70 args.paths if len(args.paths) > 0 else [args.directory])
73 def cmdfiles_in_dir(directory): argument
74 """Generate the iterator of .cmd files found under the directory.
76 Walk under the given directory, and yield every .cmd file found.
79 directory: The directory to search for .cmd files.
86 exclude_dirs = [ os.path.join(directory, d) for d in _EXCLUDE_DIRS ]
88 for dirpath, dirnames, filenames in os.walk(directory, topdown=True):
156 root_directory: The directory that was searched for .cmd files. Usually
157 used directly in the "directory" entry in compile_commands.json.
180 'directory': root_directory,
187 """Walks through the directory and finds and parses .cmd files."""
188 log_level, directory, output, ar, paths = parse_arguments()
198 # If 'path' is a directory, handle all .cmd files under it.
216 entry = process_line(directory, result.group(1),