/third_party/boost/boost/filesystem/ |
D | operations.hpp | 114 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/ |
D | update_chrome_angle.py | 75 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/ |
D | stage.py | 130 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/ |
D | copy_to_wels_head.py | 20 def copy_file(src_dir, dst_dir): function 44 copy_file(args.src_dir, args.dst_dir)
|
/third_party/ejdb/ |
D | copy_iowow_header.py | 20 def copy_file(src_dir, dst_dir): function 74 copy_file(args.src_dir, args.dst_dir)
|
/third_party/cef/tools/ |
D | make_distrib.py | 188 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 …]
|
D | file_util.py | 69 def copy_file(src, dst, quiet=True): function 102 copy_file(fname, dst, quiet)
|
D | patch_updater.py | 13 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/ |
D | cares.BUILD | 1 load("@bazel_skylib//rules:copy_file.bzl", "copy_file") 81 copy_file( 87 copy_file(
|
/third_party/python/Lib/distutils/command/ |
D | install_data.py | 52 (out, _) = self.copy_file(f, self.install_dir) 72 (out, _) = self.copy_file(data, dir)
|
D | install_headers.py | 40 (out, _) = self.copy_file(header, self.install_dir)
|
D | build_py.py | 141 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/ |
D | mbcopy.cpp | 33 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/ |
D | test_file_util.py | 7 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/ |
D | copy_file3.md | 13 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:
|
D | copy_file.md | 12 [`copy_file()`](http://en.cppreference.com/w/cpp/filesystem/copy_file)
|
D | copy_file2.md | 12 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/ |
D | 10038.cpp | 5 boost::filesystem::copy_file("a", "b"); in main()
|
D | copy_file-compilation-error-2015-05-04.cpp | 12 copy_file(path("p1"),path("p2"),copy_options::overwrite_existing); in myFunc()
|
D | Jamfile.v2 | 31 # [ run copy_file-compilation-error-2015-05-04.cpp ]
|
/third_party/openssl/tools/ |
D | c_rehash.in | 107 sub copy_file { 247 copy_file($fname, $hash);
|
/third_party/python/Lib/distutils/ |
D | file_util.py | 67 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, function 213 copy_file(src, dst, verbose=verbose)
|
D | dir_util.py | 120 from distutils.file_util import copy_file 161 copy_file(src_name, dst_name, preserve_mode,
|
D | cmd.py | 340 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/ |
D | operations_test.cpp | 205 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 …]
|