Lines Matching refs:output
91 def copy_file(output, sources="", source_dirs="", to_dir=True):
93 copy source files or source dir to output.
94 if sources is not empty, the output can be file(will be created
97 :param output: If source_dirs is not empty, output must be directory.
100 :param to_dir: output is directory or not
106 _output = output.strip()
127 def _copy_files(sources, output):
131 file_util.copy_file(source_file, output)
134 def _copy_dir(sources, output):
138 dir_util.copy_tree(source_file, output)