/external/pigweed/pw_build/py/ |
D | zip_test.py | 88 out_filename = f'{tmp_path}/out.zip' 91 zip_up(input_list, out_filename) 93 with zipfile.ZipFile(out_filename, 'r') as zip_file: 107 out_filename = f'{tmp_path}/out.zip' 110 zip_up(input_list, out_filename) 112 with zipfile.ZipFile(out_filename, 'r') as zip_file: 131 out_filename = f'{tmp_path}/out.zip' 134 zip_up(input_list, out_filename) 136 with zipfile.ZipFile(out_filename, 'r') as zip_file: 151 out_filename = f'{tmp_path}/out.zip' [all …]
|
/external/llvm-project/lldb/test/API/python_api/file_handle/ |
D | TestFileHandle.py | 96 self.out_filename = self.getBuildArtifact('output') 101 for name in (self.out_filename, self.in_filename): 125 with open(self.out_filename, 'w') as f: 134 with open(self.out_filename, 'r') as f: 141 with open(self.out_filename, 'w') as f: 144 with open(self.out_filename, 'r') as f: 150 with open(self.out_filename, 'w') as f: 156 with open(self.out_filename, 'r') as f: 165 with open(self.out_filename, 'w') as f: 168 with open(self.out_filename, 'r') as f: [all …]
|
/external/webrtc/modules/audio_coding/test/ |
D | TestVADDTX.cc | 120 std::string out_filename, in Run() argument 136 out_file.Open(out_filename, kOutputFreqHz, "ab"); in Run() 138 out_file.Open(out_filename, kOutputFreqHz, "wb"); in Run() 170 << out_filename; in Run() 175 << out_filename; in Run() 220 rtc::StringBuilder out_filename; in Test() local 221 out_filename << webrtc::test::OutputPath() << "testWebRtcVadDtx_outFile_" in Test() 224 out_filename.str(), !new_outfile, expects); in Test() 232 std::string out_filename = in Perform() local 244 out_filename, false, expects); in Perform() [all …]
|
D | TestVADDTX.h | 79 std::string out_filename,
|
/external/mesa3d/src/gallium/targets/graw-null/ |
D | graw_util.c | 60 static char out_filename[256] = ""; variable 72 strncpy(out_filename, argv[*argi + 1], sizeof(out_filename) - 1); in graw_parse_args() 73 out_filename[sizeof(out_filename) - 1] = '\0'; in graw_parse_args() 87 filename = out_filename; in graw_save_surface_to_file()
|
/external/webrtc/modules/audio_coding/codecs/tools/ |
D | audio_codec_speed_test.cc | 75 std::string out_filename = in SetUp() local 80 while ((found = out_filename.find('/')) != std::string::npos) in SetUp() 81 out_filename.replace(found, 1, "_"); in SetUp() 83 out_filename = test::OutputPath() + out_filename + ".pcm"; in SetUp() 85 out_file_ = fopen(out_filename.c_str(), "wb"); in SetUp() 88 printf("Output to be saved in %s.\n", out_filename.c_str()); in SetUp()
|
/external/webrtc/modules/audio_coding/neteq/tools/ |
D | neteq_quality_test.cc | 51 out_filename, 226 const std::string out_filename = absl::GetFlag(FLAGS_out_filename); in NetEqQualityTest() local 227 const std::string log_filename = out_filename + ".log"; in NetEqQualityTest() 231 if (out_filename.size() >= 4 && in NetEqQualityTest() 232 out_filename.substr(out_filename.size() - 4) == ".wav") { in NetEqQualityTest() 235 new webrtc::test::OutputWavFile(out_filename, 1000 * out_sampling_khz)); in NetEqQualityTest() 238 output_.reset(new webrtc::test::OutputAudioFile(out_filename)); in NetEqQualityTest()
|
/external/igt-gpu-tools/tools/ |
D | intel_guc_logger.c | 64 char *out_filename; variable 285 outfile_fd = open(out_filename ? : DEFAULT_OUTPUT_FILE_NAME, in open_output_file() 290 free(out_filename); in open_output_file() 341 out_filename = strdup(optarg); in parse_options() 342 igt_assert_f(out_filename, "Couldn't allocate the o/p filename\n"); in parse_options() 343 igt_debug("logs to be stored in file %s\n", out_filename); in parse_options()
|
/external/zopfli/src/zopflipng/ |
D | zopflipng_bin.cc | 322 std::string out_filename = user_out_filename; in main() local 326 out_filename = dir + prefix + file + ext; in main() 328 bool different_output_name = out_filename != files[i]; in main() 340 size_t origoutfilesize = GetFileSize(out_filename); in main() 364 printf("File %s exists, overwrite? (y/N) ", out_filename.c_str()); in main() 375 lodepng::save_file(resultpng, out_filename); in main()
|
/external/tensorflow/tensorflow/tools/compatibility/ |
D | ipynb.py | 41 def process_file(in_filename, out_filename, upgrader): argument 63 report_text = upgrader._format_log(log, in_filename, out_filename) 66 shutil.move(temp_file.name, out_filename)
|
D | tf_upgrade_v2_main.py | 42 def process_file(in_filename, out_filename, upgrader): argument 47 upgrader.process_file(in_filename, out_filename) 50 ipynb.process_file(in_filename, out_filename, upgrader)
|
D | ast_edits.py | 904 out_filename, argument 920 ret = self.process_opened_file(in_filename, in_file, out_filename, 927 shutil.move(temp_file.name, out_filename) 959 def _format_log(self, log, in_filename, out_filename): argument 962 out_filename) 968 def process_opened_file(self, in_filename, in_file, out_filename, out_file): argument 990 self._format_log(log, in_filename, out_filename),
|
/external/mesa3d/src/intel/tools/ |
D | error2aub.c | 231 char *out_filename = NULL, *in_filename = NULL; in main() local 246 out_filename = strdup(optarg); in main() 264 if (out_filename == NULL) { in main() 266 out_filename = malloc(out_filename_size); in main() 267 snprintf(out_filename, out_filename_size, "%s.aub", in_filename); in main() 273 FILE *aub_file = fopen(out_filename, "w"); in main() 544 free(out_filename); in main()
|
/external/libffi/ |
D | generate-darwin-source-and-headers.py | 100 out_filename = filename 104 out_filename = filename 107 out_filename = "%s_%s%s" % (split_name[0], file_suffix, split_name[1]) 110 with open(os.path.join(dst_dir, out_filename), 'w') as out_file:
|
/external/toolchain-utils/binary_search_tool/cros_pkg/ |
D | create_cleanup_script.py | 88 out_filename = 'cros_pkg/' + options.board + '_cleanup.sh' 90 with open(out_filename, 'w', encoding='utf-8') as out_file:
|
/external/pigweed/pw_build/py/pw_build/ |
D | zip.py | 47 out_filename: str, 62 with zipfile.ZipFile(out_filename, 'w', zipfile.ZIP_DEFLATED) as zip_file:
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | generate-darwin-source-and-headers.py | 102 out_filename = filename 106 out_filename = "%s_%s%s" % (split_name[0], file_suffix, split_name[1]) 109 with open(os.path.join(dst_dir, out_filename), 'w') as out_file:
|
/external/dynamic_depth/internal/dynamic_depth/ |
D | dynamic_depth.cc | 56 bool WriteImageAndMetadataAndContainer(const string& out_filename, in WriteImageAndMetadataAndContainer() argument 64 output_jpeg_stream.open(out_filename, std::ostream::out); in WriteImageAndMetadataAndContainer()
|
/external/dynamic_depth/includes/dynamic_depth/ |
D | dynamic_depth.h | 13 bool WriteImageAndMetadataAndContainer(const string& out_filename,
|
/external/pigweed/pw_build/ |
D | zip.gni | 96 args = [ "--out_filename" ]
|
/external/webrtc/modules/audio_processing/ |
D | audio_processing_unittest.cc | 397 const std::string& out_filename, 1353 const std::string& out_filename, in ProcessDebugDump() argument 1381 AecDumpFactory::Create(out_filename, max_size_bytes, &worker_queue); in ProcessDebugDump() 1455 const std::string out_filename = test::TempFilename( in VerifyDebugDumpTest() local 1464 ProcessDebugDump(ref_filename, out_filename, format, -1); in VerifyDebugDumpTest() 1468 FILE* out_file = fopen(out_filename.c_str(), "rb"); in VerifyDebugDumpTest() 1503 remove(out_filename.c_str()); in VerifyDebugDumpTest()
|