Home
last modified time | relevance | path

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

1234

/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/
Dcopy_file.pass.cpp44 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p)), bool); in TEST_CASE()
45 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts)), bool); in TEST_CASE()
46 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, ec)), bool); in TEST_CASE()
47 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts, ec)), bool); in TEST_CASE()
48 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p)); in TEST_CASE()
49 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts)); in TEST_CASE()
50 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, ec)); in TEST_CASE()
51 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts, ec)); in TEST_CASE()
64 TEST_CHECK(fs::copy_file(file, file, copy_options::overwrite_existing, in TEST_CASE()
68 …TEST_CHECK_THROW_RESULT(filesystem_error, Checker, copy_file(file, file, copy_options::overwrite_e… in TEST_CASE()
[all …]
/external/llvm-project/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.copy_file/
Dcopy_file.pass.cpp41 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p)), bool); in TEST_CASE()
42 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts)), bool); in TEST_CASE()
43 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, ec)), bool); in TEST_CASE()
44 ASSERT_SAME_TYPE(decltype(fs::copy_file(p, p, opts, ec)), bool); in TEST_CASE()
45 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p)); in TEST_CASE()
46 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts)); in TEST_CASE()
47 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, ec)); in TEST_CASE()
48 ASSERT_NOT_NOEXCEPT(fs::copy_file(p, p, opts, ec)); in TEST_CASE()
61 TEST_CHECK(fs::copy_file(file, file, copy_options::overwrite_existing, in TEST_CASE()
65 …TEST_CHECK_THROW_RESULT(filesystem_error, Checker, copy_file(file, file, copy_options::overwrite_e… in TEST_CASE()
[all …]
Dcopy_file_large.pass.cpp66 TEST_CHECK(copy_file(source, dest, ec)); in TEST_CASE()
/external/tensorflow/tensorflow/c/experimental/filesystem/plugins/posix/
DBUILD52 deps = [":copy_file"],
58 name = "copy_file",
63 hdrs = ["copy_file.h"],
/external/python/cpython2/Lib/distutils/tests/
Dtest_file_util.py6 from distutils.file_util import move_file, write_file, copy_file
79 copy_file(foo, dst_dir)
87 copy_file(self.source, self.target, link='hard')
108 copy_file(self.source, self.target, link='hard')
/external/python/cpython3/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)
/external/python/cpython2/Lib/distutils/command/
Dinstall_data.py54 (out, _) = self.copy_file(f, self.install_dir)
74 (out, _) = self.copy_file(data, dir)
Dinstall_headers.py42 (out, _) = self.copy_file(header, self.install_dir)
/external/rust/crates/grpcio-sys/grpc/third_party/cares/
Dcares.BUILD1 load("@bazel_skylib//rules:copy_file.bzl", "copy_file")
91 copy_file(
97 copy_file(
/external/python/cpython3/Lib/distutils/tests/
Dtest_file_util.py7 from distutils.file_util import move_file, copy_file
92 copy_file(self.source, self.target, link='hard')
108 copy_file(self.source, self.target, link='hard')
/external/fonttools/Tests/ufoLib/
DUFOZ_test.py29 fs.copy.copy_file(TESTDATA, name, tmp, name)
36 fs.copy.copy_file(TESTDATA, TEST_UFOZ, tmp, TEST_UFOZ)
/external/selinux/libsemanage/utils/
Dsemanage_migrate_store20 def copy_file(src, dst): function
74 copy_file(os.path.join(root, name), "%s/%s/hll" % (bottomdir, file))
124 copy_file(os.path.join(root, name), os.path.join(newstore, newname))
/external/python/cpython2/Lib/distutils/
Dcmd.py354 def copy_file(self, infile, outfile, member in Command
360 return file_util.copy_file(
453 self.copy_file(f, self.install_dir)
Dfile_util.py71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0, function
215 copy_file(src, dst, verbose=verbose)
Ddir_util.py124 from distutils.file_util import copy_file
165 copy_file(src_name, dst_name, preserve_mode,
/external/llvm-project/lldb/unittests/Target/
DModuleCacheTest.cpp102 std::error_code ec = llvm::sys::fs::copy_file( in TryGetAndPut()
143 ec = llvm::sys::fs::copy_file(s_test_executable, uuid_view.GetCString()); in TEST_F()
/external/autotest/client/site_tests/platform_PrinterPpds/
Darchiver.py136 def copy_file(self, prefix, name, path_file, apply_gzip=False): member in Archiver
167 self.copy_file(prefix, name, path_file, apply_gzip)
/external/python/cpython3/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,
/external/tensorflow/tensorflow/tools/pip_package/
Dsetup.py234 self.copy_file(header, extra_dir)
238 return self.copy_file(header, install_dir)
/external/python/cpython2/PC/VS9.0/
Dbuild_ssl.py35 from distutils.file_util import copy_file
104 copy_file(src, dst, preserve_times=False, update=True)
/external/libcxx/include/experimental/
Dfilesystem91 bool copy_file(const path& from, const path& to);
92 bool copy_file(const path& from, const path& to, error_code& ec);
93 bool copy_file(const path& from, const path& to, copy_options option);
94 bool copy_file(const path& from, const path& to, copy_options option,
/external/llvm-project/libcxx/include/experimental/
Dfilesystem90 bool copy_file(const path& from, const path& to);
91 bool copy_file(const path& from, const path& to, error_code& ec);
92 bool copy_file(const path& from, const path& to, copy_options option);
93 bool copy_file(const path& from, const path& to, copy_options option,
/external/python/pybind11/tools/
Dsetup_global.py.in30 (out, _) = self.copy_file(header, dst)

1234