Home
last modified time | relevance | path

Searched refs:copy_file (Results 1 – 25 of 47) sorted by relevance

12

/third_party/boost/boost/filesystem/
Doperations.hpp114 bool copy_file(const path& from, const path& to, // See ticket #2925
327 bool copy_file(const path& from, const path& to) in copy_file() function
329 return detail::copy_file(from, to, static_cast< unsigned int >(copy_options::none)); in copy_file()
332 bool copy_file(const path& from, const path& to, system::error_code& ec) BOOST_NOEXCEPT in copy_file() function
334 return detail::copy_file(from, to, static_cast< unsigned int >(copy_options::none), &ec); in copy_file()
337 bool copy_file(const path& from, const path& to, // See ticket #2925 in copy_file() function
340 return detail::copy_file(from, to, static_cast< unsigned int >(options)); in copy_file()
343 bool copy_file(const path& from, const path& to, // See ticket #2925 in copy_file() function
346 return detail::copy_file(from, to, static_cast< unsigned int >(options), &ec); in copy_file()
350 bool copy_file(const path& from, const path& to, // See ticket #2925 in copy_file() function
[all …]
/third_party/skia/third_party/externals/angle2/scripts/
Dupdate_chrome_angle.py75 def copy_file(src, dst): function
86 copy_file(src, dst)
89 copy_file(src + '.pdb', dst + '.pdb')
/third_party/boost/tools/build/src/tools/
Dstage.py130 staged_targets.append(copy_file(self.project(), ename, i, new_ps))
198 def copy_file(project, name, source, ps): function
259 return [copy_file(project, None, source[0], ps)]
277 copied = copy_file(project, None, source, ps)
283 copied = copy_file(project, None, source, ps)
292 copied = copy_file(project, None, source, ps)
/third_party/openh264/
Dcopy_to_wels_head.py20 def copy_file(src_dir, dst_dir): function
44 copy_file(args.src_dir, args.dst_dir)
/third_party/ejdb/
Dcopy_iowow_header.py20 def copy_file(src_dir, dst_dir): function
74 copy_file(args.src_dir, args.dst_dir)
/third_party/cef/tools/
Dmake_distrib.py188 copy_file(
195 copy_file(
200 copy_file(
204 copy_file(
221 copy_file(src, dst, quiet)
247 copy_file(src, dst, quiet)
252 copy_file(
309 copy_file(source_path, target_path, options.quiet)
667 copy_file(os.path.join(cef_dir, 'LICENSE.txt'), output_dir, options.quiet)
733 copy_file(src_path, os.path.join(include_dir, include), options.quiet)
[all …]
Dfile_util.py69 def copy_file(src, dst, quiet=True): function
102 copy_file(fname, dst, quiet)
Dpatch_updater.py13 from file_util import copy_file, move_file, read_file, remove_file
192 copy_file(patch_path_abs, backup_path_abs)
/third_party/grpc/third_party/cares/
Dcares.BUILD1 load("@bazel_skylib//rules:copy_file.bzl", "copy_file")
81 copy_file(
87 copy_file(
/third_party/python/Lib/distutils/command/
Dinstall_data.py52 (out, _) = self.copy_file(f, self.install_dir)
72 (out, _) = self.copy_file(data, dir)
Dinstall_headers.py40 (out, _) = self.copy_file(header, self.install_dir)
Dbuild_py.py141 self.copy_file(os.path.join(src_dir, filename), target,
343 return self.copy_file(module_file, outfile, preserve_mode=0)
/third_party/boost/libs/filesystem/example/
Dmbcopy.cpp33 void copy_file( const fs::wpath & from, const user::mbpath & to ) in copy_file() function
80 copy_file( *it, target_dir / it->path().filename() ); in main()
/third_party/python/Lib/distutils/tests/
Dtest_file_util.py7 from distutils.file_util import move_file, copy_file
94 copy_file(self.source, self.target, link='hard')
110 copy_file(self.source, self.target, link='hard')
/third_party/boost/libs/outcome/doc/src/content/tutorial/advanced/payload/
Dcopy_file3.md13 Seeing as we are replacing the throwing overload of `copy_file()` in the
28 Usage of our new "upgraded" Filesystem `copy_file()` might now be as follows:
Dcopy_file.md12 [`copy_file()`](http://en.cppreference.com/w/cpp/filesystem/copy_file)
Dcopy_file2.md12 Starting at the bottom, there is now a single `copy_file()` function which returns a `fs_result<voi…
/third_party/boost/libs/filesystem/test/issues/
D10038.cpp5 boost::filesystem::copy_file("a", "b"); in main()
Dcopy_file-compilation-error-2015-05-04.cpp12 copy_file(path("p1"),path("p2"),copy_options::overwrite_existing); in myFunc()
DJamfile.v231 # [ run copy_file-compilation-error-2015-05-04.cpp ]
/third_party/openssl/tools/
Dc_rehash.in107 sub copy_file {
247 copy_file($fname, $hash);
/third_party/python/Lib/distutils/
Dfile_util.py67 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, function
213 copy_file(src, dst, verbose=verbose)
Ddir_util.py120 from distutils.file_util import copy_file
161 copy_file(src_name, dst_name, preserve_mode,
Dcmd.py340 def copy_file(self, infile, outfile, preserve_mode=1, preserve_times=1, member in Command
345 return file_util.copy_file(infile, outfile, preserve_mode,
/third_party/boost/libs/filesystem/test/
Doperations_test.cpp205 fs::copy_file(p, p); in do_the_right_thing_tests()
206 fs::copy_file(s, p); in do_the_right_thing_tests()
207 fs::copy_file(a, p); in do_the_right_thing_tests()
208 fs::copy_file(p, s); in do_the_right_thing_tests()
209 fs::copy_file(p, a); in do_the_right_thing_tests()
210 fs::copy_file(s, s); in do_the_right_thing_tests()
211 fs::copy_file(a, s); in do_the_right_thing_tests()
212 fs::copy_file(s, a); in do_the_right_thing_tests()
213 fs::copy_file(a, a); in do_the_right_thing_tests()
1597 bool file_copied = fs::copy_file(f1x, d1x / "f2"); in copy_file_tests()
[all …]

12