/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
D | fake_filesystem_shutil_test.py | 47 src_file = 'xyzzy' 49 src_obj = self.filesystem.CreateFile(src_file) 51 self.assertTrue(self.filesystem.Exists(src_file)) 53 self.shutil.copy(src_file, dst_file) 59 src_file = 'xyzzy' 61 dst_file = '%s/%s' % (parent_directory, src_file) 62 src_obj = self.filesystem.CreateFile(src_file) 65 self.assertTrue(self.filesystem.Exists(src_file)) 68 self.shutil.copy(src_file, parent_directory) 74 src_file = 'xyzzy' [all …]
|
/external/snakeyaml/ |
D | patch-android-src | 30 src_file="$2" 42 if ! [[ $src_file == $src_file_prefix* ]]; then 43 echo "$src_file_prefix is not a valid prefix of $src_file" >&2 47 if ! [[ -f $src_file ]]; then 48 echo "Source file $src_file does not exist." >&2 53 src_file="${src_file#$src_file_prefix}" 55 patch_file_src=$(grep --files-with-matches -R "diff --git a/$src_file" "$ANDROID_PATCHES_DIR") 57 echo "Error: Could not find a corresponding .patch file for $src_file" >&2 75 if [[ $src_file != $src_file_check ]]; then 76 echo "Check-fail: $src_file was not same as found in patch file ($src_file_check)" >&2
|
/external/vulkan-validation-layers/build-android/ |
D | build.py | 29 src_file = os.path.join(src_dir, file_name) 32 print('Copying {} to {}...'.format(src_file, dst_file)) 33 if os.path.isdir(src_file): 34 _install_dir(src_file, dst_file) 35 elif os.path.islink(src_file): 36 _install_symlink(src_file, dst_file) 38 _install_file(src_file, dst_file) 48 def _install_symlink(src_file, dst_file): argument 52 link_target = os.readlink(src_file) 56 def _install_file(src_file, dst_file): argument [all …]
|
/external/valgrind/callgrind/ |
D | callgrind_annotate.in | 982 my $src_file = $_[0]; 988 @ Source file '$src_file' is more recent than input file '$input_file'. 1001 my ($src_more_recent_than_inputfile, $src_file, $excess_line_nums) = @_; 1006 @@ cause: '$src_file' has changed since information was gathered. 1012 } elsif ($src_file =~ /\.h$/) { 1029 @@ Information recorded about lines past the end of '$src_file'. 1059 foreach my $src_file (keys %all_ann_files) { 1064 my $try_name = $include_dir . $src_file; 1068 ? $src_file 1069 : "$include_dir + $src_file"); [all …]
|
/external/valgrind/cachegrind/ |
D | cg_annotate.in | 656 my $src_file = $_[0]; 675 my ($src_more_recent_than_inputfile, $src_file, $excess_line_nums) = @_; 686 } elsif ($src_file =~ /\.h$/) { 703 @@ Information recorded about lines past the end of '$src_file'. 769 my $src_file_CCs = $allCCs{$src_file}; 771 print(" No information has been collected for $src_file\n\n"); 784 warning_on_src_more_recent_than_inputfile($src_file); 852 $src_file, \@line_nums); 860 print(" <counts for unidentified lines in $src_file>\n\n");
|
/external/clang/tools/scan-build-py/tests/functional/cases/ |
D | test_from_cmd.py | 84 src_file = os.path.join(target_dir, src_file_name) 86 create_empty_file(src_file) 87 command = ' '.join([compiler, '-c', src_file, '-o', obj_file])
|
/external/protobuf/objectivec/DevTools/ |
D | pddm.py | 661 src_file = SourceFile(f, _ImportResolver) 664 src_file.ProcessContent(strip_expansion=opts.collapse) 670 if src_file.processed_content != src_file.original_content: 674 f.write(src_file.processed_content)
|
/external/clang/tools/scan-build-py/libear/ |
D | __init__.py | 171 src_file = 'check.c' 172 with open(os.path.join(work_dir, src_file), 'w') as handle: 175 execute([self.ctx.compiler, src_file] + self.ctx.c_flags,
|
/external/autotest/client/common_lib/cros/ |
D | avahi_utils.py | 25 def avahi_config(options, src_file='/etc/avahi/avahi-daemon.conf', host=None): argument 42 existing_config = run('cat %s 2> /dev/null' % src_file).stdout
|
/external/toolchain-utils/cros_utils/ |
D | logger.py | 86 src_file = '%s.%s' % (os.path.basename(suffixed_basename), extension) 90 os.symlink(src_file, dest_file) 252 src_file = '%s.%s' % (os.path.basename(suffixed_basename), extension) 254 print('MockLogger: Calling os.symlink(%s, %s)' % (src_file, dest_file))
|
/external/libjpeg-turbo/ |
D | wrjpgcom.c | 547 FILE *src_file; in main() local 554 src_file = (comment_file != NULL ? comment_file : stdin); in main() 555 while ((c = getc(src_file)) != EOF) { in main()
|
/external/toolchain-utils/fdo_scripts/ |
D | divide_and_merge_profiles.py | 61 src_file = os.path.join(input_dir, f) 66 command = 'cp %s %s' % (src_file, dst_file)
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_compiler_util.h | 51 rc_register_file src_file,
|
D | radeon_compiler_util.c | 313 rc_register_file src_file, in rc_src_reads_dst_mask() argument 320 if (src_file != dst_file || src_idx != dst_idx) { in rc_src_reads_dst_mask()
|
/external/autotest/client/bin/ |
D | site_sysinfo.py | 203 for src_file in self._get_all_files(src_dir): 204 self._copy_new_data_in_file(src_file, src_dir, dest_dir)
|
/external/autotest/client/common_lib/ |
D | base_utils_unittest.py | 446 src_file = self.god.create_mock_class(file, "file") 450 .and_return(src_file)) 452 base_utils.shutil.copyfileobj.expect_call(src_file, dest_file) 454 src_file.close.expect_call()
|
D | base_utils.py | 563 src_file = urlopen(url, data=data, timeout=timeout) 567 shutil.copyfileobj(src_file, dest_file) 571 src_file.close()
|
/external/compiler-rt/cmake/Modules/ |
D | AddCompilerRT.cmake | 312 set(src_file "${CMAKE_CURRENT_SOURCE_DIR}/${file_name}") variable 315 DEPENDS ${src_file} 316 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src_file} ${dst_file}
|
/external/chromium-trace/catapult/systrace/systrace/test_data/ |
D | profile-chrome_systrace_perf_chrome_data | 1 …src_file": "../../components/scheduler/base/task_queue_impl.cc"}, "pid": 13931, "ts": 196489505302…
|