Home
last modified time | relevance | path

Searched refs:dest_file (Results 1 - 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/zlib/google/
H A Dzip.cc104 const base::FilePath& dest_file) in ZipParams()
106 dest_file_(dest_file), in ZipParams()
159 DCHECK(params.dest_file().empty()); in Zip()
168 params.dest_file(), params.src_dir(), params.file_accessor()); in Zip()
241 const base::FilePath& dest_file, in ZipWithFilterCallback()
244 ZipParams params(src_dir, dest_file); in ZipWithFilterCallback()
249 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, in Zip() argument
252 return ZipWithFilterCallback(src_dir, dest_file, in Zip()
256 src_dir, dest_file, base::BindRepeating(&ExcludeHiddenFilesFilter)); in Zip()
103 ZipParams(const base::FilePath& src_dir, const base::FilePath& dest_file) ZipParams() argument
240 ZipWithFilterCallback(const base::FilePath& src_dir, const base::FilePath& dest_file, const FilterCallback& filter_cb) ZipWithFilterCallback() argument
H A Dzip.h53 ZipParams(const base::FilePath& src_dir, const base::FilePath& dest_file);
63 const base::FilePath& dest_file() const { return dest_file_; } in dest_file() function in zip::ZipParams
123 // Zip the contents of src_dir into dest_file. src_path must be a directory.
130 const base::FilePath& dest_file,
136 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
/third_party/cups/
H A Dgenerate_mime_convs.py24 dest_file = dir + dest_name
25 print(f'copy from %s to %s', src_file, dest_file)
26 shutil.copy2(src_file, dest_file)
H A Dinstall.py36 dest_file = dir + dest_name
37 print(f'copy from %s to %s', src_file, dest_file)
38 shutil.copy2(src_file, dest_file)
/third_party/node/deps/v8/third_party/zlib/google/
H A Dzip.cc132 DCHECK(params.dest_file.empty()); in Zip()
141 zip_writer = internal::ZipWriter::Create(params.dest_file, file_accessor); in Zip()
244 const base::FilePath& dest_file, in ZipWithFilterCallback()
248 .dest_file = dest_file, in ZipWithFilterCallback()
253 const base::FilePath& dest_file, in Zip()
256 .dest_file = dest_file, in Zip()
243 ZipWithFilterCallback(const base::FilePath& src_dir, const base::FilePath& dest_file, FilterCallback filter) ZipWithFilterCallback() argument
252 Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, bool include_hidden_files) Zip() argument
H A Dzip.h99 // Either dest_file or dest_fd should be set, but not both.
100 base::FilePath dest_file; member
104 // Either dest_file or dest_fd should be set, but not both.
146 // Zip the contents of src_dir into dest_file. src_path must be a directory.
152 const base::FilePath& dest_file,
159 const base::FilePath& dest_file,
H A Dzip_unittest.cc1125 .dest_file = zip_file}; in TEST_F()
1172 .dest_file = zip_file, in TEST_F()
1209 .dest_file = zip_file, in TEST_F()
1234 .dest_file = zip_file, in TEST_F()
1247 .dest_file = zip_file, in TEST_F()
1300 const base::FilePath dest_file = temp_dir.GetPath().AppendASCII("dest.zip"); in TEST_F() local
1302 .dest_file = dest_file, in TEST_F()
1308 ASSERT_TRUE(base::GetFileSize(dest_file, &dest_file_size)); in TEST_F()
1333 const base::FilePath dest_file in TEST_F() local
1387 const base::FilePath dest_file = temp_dir.GetPath().AppendASCII("dest.zip"); global() local
[all...]
/third_party/node/deps/zlib/google/
H A Dzip.cc132 DCHECK(params.dest_file.empty()); in Zip()
141 zip_writer = internal::ZipWriter::Create(params.dest_file, file_accessor); in Zip()
247 const base::FilePath& dest_file, in ZipWithFilterCallback()
251 .dest_file = dest_file, in ZipWithFilterCallback()
256 const base::FilePath& dest_file, in Zip()
259 .dest_file = dest_file, in Zip()
246 ZipWithFilterCallback(const base::FilePath& src_dir, const base::FilePath& dest_file, FilterCallback filter) ZipWithFilterCallback() argument
255 Zip(const base::FilePath& src_dir, const base::FilePath& dest_file, bool include_hidden_files) Zip() argument
H A Dzip.h99 // Either dest_file or dest_fd should be set, but not both.
100 base::FilePath dest_file; member
104 // Either dest_file or dest_fd should be set, but not both.
146 // Zip the contents of src_dir into dest_file. src_path must be a directory.
152 const base::FilePath& dest_file,
159 const base::FilePath& dest_file,
H A Dzip_unittest.cc1125 .dest_file = zip_file}; in TEST_F()
1172 .dest_file = zip_file, in TEST_F()
1209 .dest_file = zip_file, in TEST_F()
1234 .dest_file = zip_file, in TEST_F()
1247 .dest_file = zip_file, in TEST_F()
1300 const base::FilePath dest_file = temp_dir.GetPath().AppendASCII("dest.zip"); in TEST_F() local
1302 .dest_file = dest_file, in TEST_F()
1308 ASSERT_TRUE(base::GetFileSize(dest_file, &dest_file_size)); in TEST_F()
1333 const base::FilePath dest_file in TEST_F() local
1387 const base::FilePath dest_file = temp_dir.GetPath().AppendASCII("dest.zip"); global() local
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfscp.c67 char *dest_file; /* Destination file */ member
76 int inode; /* Treat dest_file as inode number. */
125 ntfs_log_info("\nUsage: %s [options] device src_file dest_file\n\n" in usage()
127 " -i, --inode Treat dest_file as inode number\n" in usage()
178 opts.dest_file = NULL; in parse_options()
193 } else if (!opts.dest_file) { in parse_options()
194 opts.dest_file = argv[optind - 1]; in parse_options()
284 } else if (!opts.dest_file) { in parse_options()
915 inode_num = strtoll(opts.dest_file, &s, 0); in main()
923 unix_name = ntfs_utils_unix_path(opts.dest_file); in main()
[all...]
/third_party/skia/tools/svg/
H A Dsvg_downloader.py34 dest_file = os.path.join(dest_dir, prefix + os.path.basename(file_url))
38 print('Downloading %s to %s' % (file_url, dest_file))
39 urllib.urlretrieve(file_url, dest_file)
/third_party/cups-filters/
H A Dinstall.py26 dest_file = dest + dest_name
27 shutil.copy2(src_file, dest_file)
/third_party/vulkan-loader/scripts/
H A Dhelper_file_generator.py164 dest_file = ''
165 dest_file += self.OutputDestFile()
167 if dest_file.endswith('\n'):
168 dest_file = dest_file[:-1]
169 write(dest_file, file=self.outFile)
/third_party/python/Tools/importbench/
H A Dimportbench.py219 if options.dest_file:
220 with options.dest_file:
221 json.dump(new_results, options.dest_file, indent=2)
234 parser.add_argument('-w', '--write', dest='dest_file',
/third_party/icu/tools/unicode/c/genprops/misc/
H A Ducdcopy.py181 dest_file = os.path.join(dest_path, basename)
182 action(source_file, dest_file)
/third_party/icu/tools/unicode/py/
H A Dpreparseucd.py1723 dest_file = os.path.join(dest_path, dest_basename)
1724 parse_file = preprocessor(source_file, dest_file)

Completed in 14 milliseconds