Home
last modified time | relevance | path

Searched refs:dst_file (Results 1 – 9 of 9) sorted by relevance

/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
Dfake_filesystem_shutil_test.py48 dst_file = 'xyzzy_copy'
52 self.assertFalse(self.filesystem.Exists(dst_file))
53 self.shutil.copy(src_file, dst_file)
54 self.assertTrue(self.filesystem.Exists(dst_file))
55 dst_obj = self.filesystem.GetObject(dst_file)
61 dst_file = '%s/%s' % (parent_directory, src_file)
67 self.assertFalse(self.filesystem.Exists(dst_file))
69 self.assertTrue(self.filesystem.Exists(dst_file))
70 dst_obj = self.filesystem.GetObject(dst_file)
75 dst_file = 'xyzzy_copy'
[all …]
/external/snakeyaml/
Dpatch-android-src32 dst_file="$3"
33 dst_dir="$(dirname "$dst_file")"
84 cp "$src_file_with_prefix" "$dst_file"
85 if ! [[ -f "$dst_file" ]]; then
86 echo "File "$dst_file" does not exist; patching will fail" >&2
90 patch "$(basename "$dst_file")" "$patch_file_src"
91 echo "Successfully applied patch $patch_file_src into copy of file $dst_file"
/external/autotest/client/tests/kvm/
Dget_started.py91 dst_file = config_file.rstrip(".sample") variable
92 if not os.path.isfile(dst_file):
93 logging.debug("Creating config file %s from sample", dst_file)
94 shutil.copyfile(src_file, dst_file)
96 logging.debug("Config file %s exists, not touching" % dst_file)
/external/compiler-rt/cmake/Modules/
DAddCompilerRT.cmake245 set(dst_file "${COMPILER_RT_OUTPUT_DIR}/${file_name}") variable
246 add_custom_command(OUTPUT ${dst_file}
248 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src_file} ${dst_file}
250 add_custom_target(${target_name} DEPENDS ${dst_file})
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler_util.h54 rc_register_file dst_file,
Dradeon_compiler_util.c316 rc_register_file dst_file, in rc_src_reads_dst_mask() argument
320 if (src_file != dst_file || src_idx != dst_idx) { in rc_src_reads_dst_mask()
Dradeon_dataflow.c683 rc_register_file dst_file, in get_readers_for_single_write() argument
698 d->DstFile = dst_file; in get_readers_for_single_write()
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/gs/
Dtest_resumable_downloads.py60 dst_file = os.path.join(tmpdir, 'dstfile')
61 return open(dst_file, 'w')
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
Dtest_naming.py478 dst_file = self.CreateTempFile()
480 self.RunCommand('cp', ['-R', suri(src_bucket_uri, '*'), dst_file])