/external/libjpeg-turbo/gtest/ |
D | djpeg-gtest-wrapper.cpp | 69 base::FilePath output_path(GetTargetDirectory()); in TEST_P() local 70 output_path = output_path.AppendASCII(std::get<1>(GetParam())); in TEST_P() 80 std::string arg8 = output_path.MaybeAsASCII(); in TEST_P() 91 EXPECT_TRUE(CompareFileAndMD5(output_path, std::get<2>(GetParam()))); in TEST_P() 102 base::FilePath output_path(GetTargetDirectory()); in TEST() local 103 output_path = output_path.AppendASCII("testout_420_islow_256.bmp"); in TEST() 112 std::string arg7 = output_path.MaybeAsASCII(); in TEST() 124 EXPECT_TRUE(CompareFileAndMD5(output_path, EXPECTED_MD5)); in TEST() 131 base::FilePath output_path(GetTargetDirectory()); in TEST() local 132 output_path = output_path.AppendASCII("testout_420_islow_565.bmp"); in TEST() [all …]
|
D | cjpeg-gtest-wrapper.cpp | 37 base::FilePath output_path(GetTargetDirectory()); in TEST() local 38 output_path = output_path.AppendASCII("testout_rgb_islow.jpg"); in TEST() 47 std::string arg7 = output_path.MaybeAsASCII(); in TEST() 59 EXPECT_TRUE(CompareFileAndMD5(output_path, EXPECTED_MD5)); in TEST() 66 base::FilePath output_path(GetTargetDirectory()); in TEST() local 67 output_path = output_path.AppendASCII("testout_422_ifast_opt.jpg"); in TEST() 76 std::string arg7 = output_path.MaybeAsASCII(); in TEST() 88 EXPECT_TRUE(CompareFileAndMD5(output_path, EXPECTED_MD5)); in TEST() 97 base::FilePath output_path(GetTargetDirectory()); in TEST() local 98 output_path = output_path.AppendASCII("testout_420_q100_ifast_prog.jpg"); in TEST() [all …]
|
D | jpegtran-gtest-wrapper.cpp | 37 base::FilePath output_path(GetTargetDirectory()); in TEST() local 38 output_path = output_path.AppendASCII("testout_rgb_islow2.jpg"); in TEST() 46 std::string arg6 = output_path.MaybeAsASCII(); in TEST() 58 EXPECT_TRUE(CompareFileAndMD5(output_path, EXPECTED_MD5)); in TEST() 65 base::FilePath output_path(GetTargetDirectory()); in TEST() local 66 output_path = output_path.AppendASCII("testout_crop.jpg"); in TEST() 74 std::string arg6 = output_path.MaybeAsASCII(); in TEST() 86 EXPECT_TRUE(CompareFileAndMD5(output_path, EXPECTED_MD5)); in TEST() 94 base::FilePath output_path(GetTargetDirectory()); in TEST() local 95 output_path = output_path.AppendASCII("testout_420_islow_ari2.jpg"); in TEST() [all …]
|
/external/chromium-crossbench/tests/crossbench/probes/ |
D | test_system_profiling.py | 27 output_path = pathlib.Path("simpleperf.perf.data") 41 output_path=output_path), [ 43 "--post-unwind=yes", "-o", output_path 47 output_path = pathlib.Path("simpleperf.perf.data") 61 output_path=output_path), [ 63 "--post-unwind=yes", "-o", output_path 67 output_path = pathlib.Path("simpleperf.perf.data") 81 output_path=output_path), [ 83 "--call-graph", "dwarf", "--post-unwind=yes", "-o", output_path 87 output_path = pathlib.Path("simpleperf.perf.data") [all …]
|
/external/fonttools/Tests/ttLib/ |
D | main_test.py | 56 output_path = tmp_path / "TestTTF-Regular.ttf" 57 args = ["-o", str(output_path), str(ttfont_path)] 63 assert output_path.exists() 64 assert TTFont(output_path).getGlyphOrder() == TTFont(ttfont_path).getGlyphOrder() 73 output_path = tmp_path / f"TestTTF-Regular#{i}.ttf" 74 args = ["-y", str(i), "-o", str(output_path), str(ttcollection_path)] 80 assert output_path.exists() 82 TTFont(output_path).getGlyphOrder() 88 output_path = tmp_path / "TestTTF.ttc" 90 __main__.main(["-o", str(output_path), str(ttcollection_path)]) [all …]
|
/external/fonttools/Lib/fontTools/cu2qu/ |
D | cli.py | 38 def _font_to_quadratic(input_path, output_path=None, **kwargs): argument 42 logger.info("Saving %s", output_path) 43 if output_path: 44 ufo.save(output_path) 47 elif output_path: 48 _copytree(input_path, output_path) 58 def _copytree(input_path, output_path): argument 59 if _samepath(input_path, output_path): 62 if os.path.exists(output_path): 63 shutil.rmtree(output_path) [all …]
|
/external/iamf_tools/iamf/cli/adm_to_user_metadata/app/tests/ |
D | adm_to_user_metadata_main_lib_test.cc | 108 absl::string_view input_adm, const std::filesystem::path& output_path) { in GenerateUserMetadataAndSpliceWavFilesExpectOk() argument 111 kFilePrefix, kMaxFrameDurationMs, kImportanceThreshold, output_path, ss, in GenerateUserMetadataAndSpliceWavFilesExpectOk() 121 const std::filesystem::path output_path(GetAndCreateOutputDirectory("")); in TEST() local 123 kAdmWithOneStereoObject, output_path); in TEST() 126 output_path / user_metadata.audio_frame_metadata(0).wav_filename(); in TEST() 132 const std::filesystem::path output_path(GetAndCreateOutputDirectory("")); in TEST() local 134 kAdmWithOneStereoObject, output_path); in TEST() 141 const std::filesystem::path output_path(GetAndCreateOutputDirectory("")); in TEST() local 143 kAdmWithOneStereoObject, output_path); in TEST() 154 const std::filesystem::path output_path(GetAndCreateOutputDirectory("")); in TEST() local [all …]
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | command_parser_test.py | 103 args, output_path = command_parser.extract_output_file_path(["pt", "a:0"]) 105 self.assertIsNone(output_path) 108 args, output_path = command_parser.extract_output_file_path( 111 self.assertEqual(output_path, "/tmp/foo.txt") 114 args, output_path = command_parser.extract_output_file_path( 117 self.assertEqual(output_path, "/tmp/foo.txt") 125 args, output_path = command_parser.extract_output_file_path( 128 self.assertEqual(output_path, "/tmp/foo.txt") 131 args, output_path = command_parser.extract_output_file_path( 134 self.assertEqual(output_path, "/tmp/foo.txt") [all …]
|
/external/pigweed/pw_build_mcuxpresso/py/pw_build_mcuxpresso/ |
D | __main__.py | 65 output_path: pathlib.Path = args.output_path 67 if args.clean and output_path.is_dir(): 69 shutil.rmtree(output_path) 72 output_path, args.mcuxpresso_repo, args.mcuxpresso_rev 74 modules = west_wrap.list_modules(output_path, args.mcuxpresso_repo) 77 output_path / 'core' / 'manifests' / args.manifest_filename, 78 output_path, 88 bazel.generate_bazel_files(project, output_path) 91 gn.generate_gn_files(project, output_path) 95 output_dir=args.output_path,
|
/external/angle/scripts/ |
D | winappsdk_setup.py | 29 def download_and_extract_nuget_package(force, version, output_path): argument 31 stamp = os.path.join(output_path, f"{version}.stamp") 41 os.makedirs(output_path, exist_ok=True) 43 zip_ref.extractall(output_path) 71 def run_winmdidl(force, win_sdk_bin, output_path, winmd, stamp_filename=None): argument 72 include = os.path.join(output_path, "include") 73 lib = os.path.join(output_path, "lib") 93 def run_midlrt(force, win_sdk_bin, output_path, idl): argument 94 include = os.path.join(output_path, "include") 95 lib = os.path.join(output_path, "lib") [all …]
|
/external/tink/python/examples/deterministic_aead/ |
D | deterministic_aead_test.sh | 54 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" 69 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" 91 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted1" 94 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted2" 109 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" 123 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" 139 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" \ 151 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" \ 170 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" \ 183 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" \
|
/external/fonttools/Tests/qu2cu/ |
D | qu2cu_cli_test.py | 37 output_path = str(ttf_path).replace(".ttf", ".cubic.ttf") 38 font = TTFont(output_path) 40 assert os.stat(ttf_path).st_size > os.stat(output_path).st_size 44 output_path = str(ttf_path) + ".cubic" 46 self.run_main(ttf_path, "-o", output_path) 48 font = TTFont(output_path) 60 output_path = str(ttf_path).replace(".ttf", ".cubic.ttf") 61 font = TTFont(output_path)
|
/external/tink/python/examples/aead/ |
D | aead_test.sh | 54 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" 69 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" 92 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" 106 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" 122 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" \ 134 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" \ 153 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" \ 166 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" \
|
/external/angle/third_party/clspv/gn/llvm/tablegen/ |
D | BUILD.gn | 376 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 382 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 390 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 396 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 402 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 408 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 414 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 420 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 426 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" 432 output_path = "$clspv_llvm_dir/clang/include/clang/Basic" [all …]
|
/external/tink/python/examples/hybrid/ |
D | hybrid_test.sh | 55 --input_path="${INPUT_FILE}" --output_path="${INPUT_FILE}.ciphertext" 66 --input_path="${INPUT_FILE}.ciphertext" --output_path="${INPUT_FILE}.plaintext" 88 --output_path="${INPUT_FILE}.ciphertext" 100 --output_path="${INPUT_FILE}.plaintext" 119 --output_path="${INPUT_FILE}.ciphertext" 130 --input_path="${INPUT_FILE}.ciphertext" --output_path="${INPUT_FILE}.plaintext" 145 --input_path="${INPUT_FILE}" --output_path="${INPUT_FILE}.ciphertext"
|
/external/perfetto/tools/ |
D | gen_ui_imports | 62 def gen_imports(input_dir, output_path): argument 67 output_dir = os.path.dirname(output_path) 91 def gen_css_import(input_dir, output_path): argument 96 output_dir = os.path.dirname(output_path) 117 output_path = args.out 123 output_dir = os.path.dirname(output_path) 127 if os.path.isdir(output_path): 131 success = gen_imports(input_dir, output_path) 132 success = success | gen_css_import(input_dir, output_path)
|
/external/tink/python/examples/streaming_aead/ |
D | streaming_aead_test.sh | 57 --output_path="${INPUT_FILE}.ciphertext" 69 --output_path="${INPUT_FILE}.plaintext" 90 --output_path="${INPUT_FILE}.ciphertext" 103 --output_path="${INPUT_FILE}.plaintext" 122 --output_path="${INPUT_FILE}.ciphertext" 137 --output_path="${INPUT_FILE}.plaintext"
|
/external/crosvm/tools/infra/ |
D | binary_size | 67 output_path = ( 74 if len(output_path.split("/")) > 2 and output_path.split("/")[0] == output_path.split("/")[1]: 75 output_path = "/".join(output_path.split("/")[1:]) 78 size_dict_for_gerrit = {output_path: file_size} 90 "test_name": output_path,
|
/external/cronet/stable/net/tools/ |
D | stitch_net_log_files.py | 55 output_path = None 59 output_path = sys.argv[2] 65 output_path = m.group(1) 67 output_path = os.path.abspath(output_path) 70 sys.stdout.write("Writing log file to: %s\n" % output_path) 74 with open(output_path, "w") as stitched_file:
|
/external/cronet/tot/net/tools/ |
D | stitch_net_log_files.py | 55 output_path = None 59 output_path = sys.argv[2] 65 output_path = m.group(1) 67 output_path = os.path.abspath(output_path) 70 sys.stdout.write("Writing log file to: %s\n" % output_path) 74 with open(output_path, "w") as stitched_file:
|
/external/tink/python/examples/envelope_aead/ |
D | envelope_test.sh | 61 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" 77 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" 101 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" \ 114 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" \ 134 --input_path "${DATA_FILE}" --output_path "${DATA_FILE}.encrypted" \ 148 --input_path "${DATA_FILE}.encrypted" --output_path "${DATA_FILE}.decrypted" \
|
/external/openscreen/tools/ |
D | curlish.py | 19 def curlish(download_url, output_path): argument 23 if not output_path or not download_url: 27 print('downloading from "{}" to "{}"'.format(download_url, output_path)) 40 directory = os.path.dirname(output_path) 44 script_file = open(output_path, 'w')
|
/external/pdfium/testing/tools/ |
D | safetynet_image.py | 34 def __init__(self, build_dir, output_path, two_labels, num_workers, argument 49 self.output_path = output_path 71 html_path = os.path.join(self.output_path, 'compare.html') 73 self.diff_path = os.path.join(self.output_path, 'diff') 77 self.image_locations = ImageLocations(self.output_path, self.diff_path, 176 return os.path.relpath(absolute_path, start=self.output_path) 245 def __init__(self, output_path, diff_path, two_labels): argument 254 self.output_path = output_path 282 image_path_matcher = os.path.join(self.output_path, label, '*.*.png')
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | main.py | 203 def write_components(self, output_path): argument 257 directory_path = os.path.join(output_path, subpath[1:]) 319 def write_library_table(self, output_path, enabled_optional_components): argument 385 make_install_dir(os.path.dirname(output_path)) 386 f = open(output_path+'.new', 'w') 428 if not os.path.isfile(output_path): 429 os.rename(output_path+'.new', output_path) 430 elif filecmp.cmp(output_path, output_path+'.new'): 431 os.remove(output_path+'.new') 433 os.remove(output_path) [all …]
|
D | configutil.py | 8 def configure_file(input_path, output_path, substitutions): argument 39 output_parent_path = os.path.dirname(os.path.abspath(output_path)) 44 if os.path.exists(output_path): 47 f = open(output_path, "rb") 60 f = open(output_path, "wb")
|