/external/webrtc/test/testsupport/ |
D | file_utils_unittest.cc | 106 std::string result = webrtc::test::OutputPath(); in TEST_F() 117 std::string result = webrtc::test::OutputPath(); in TEST_F() 124 webrtc::test::OutputPath(), "TempFilenameTest"); in TEST_F() 132 webrtc::test::OutputPath(), "TempFilenameTest"); in TEST_F() 195 webrtc::test::OutputPath(), "fileutils_unittest"); in TEST_F() 211 ASSERT_TRUE(webrtc::test::DirExists(webrtc::test::OutputPath())) in TEST_F() 221 webrtc::test::OutputPath(), "TempFilenameTest"); in TEST_F() 234 OutputPath() + Path("TempFileUtilsTestReadDirectory/"); in TEST_F()
|
D | file_utils_override.h | 36 std::string OutputPath();
|
/external/clang/tools/driver/ |
D | cc1as_main.cpp | 102 std::string OutputPath; member 139 OutputPath = "-"; in AssemblerInvocation() 225 Opts.OutputPath = Args.getLastArgValue(OPT_o); in CreateFromArgs() 262 if (Opts.OutputPath.empty()) in getOutputStream() 263 Opts.OutputPath = "-"; in getOutputStream() 267 if (Opts.OutputPath != "-") in getOutputStream() 268 sys::RemoveFileOnSignal(Opts.OutputPath); in getOutputStream() 272 Opts.OutputPath, EC, (Binary ? sys::fs::F_None : sys::fs::F_Text)); in getOutputStream() 274 Diags.Report(diag::err_fe_unable_to_open_output) << Opts.OutputPath in getOutputStream() 434 if (Failed && Opts.OutputPath != "-") in ExecuteAssembler() [all …]
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | NetTest.sh | 21 msbuild -property:Configuration=Release,OutputPath=$TEMP_BIN -verbosity:quiet $PROJ_FILE 26 msbuild -property:Configuration=Release,UnsafeByteBuffer=true,OutputPath=$TEMP_BIN -verbosity:quiet… 31 msbuild -property:Configuration=Release,EnableSpanT=true,OutputPath=$TEMP_BIN -verbosity:quiet $PRO…
|
/external/webrtc/rtc_tools/network_tester/ |
D | network_tester_unittest.cc | 26 webrtc::test::OutputPath() + "client_packet_log.dat"); in TEST() 30 webrtc::test::OutputPath() + "server_packet_log.dat"); in TEST()
|
/external/webrtc/modules/audio_coding/test/ |
D | TwoWayCommunication.cc | 91 std::string output_file_a = webrtc::test::OutputPath() + "outAutotestA.pcm"; in SetUpAutotest() 95 webrtc::test::OutputPath() + "ref_outAutotestA.pcm"; in SetUpAutotest() 99 std::string output_file_b = webrtc::test::OutputPath() + "outAutotestB.pcm"; in SetUpAutotest() 103 webrtc::test::OutputPath() + "ref_outAutotestB.pcm"; in SetUpAutotest()
|
D | TestVADDTX.cc | 210 out_filename << webrtc::test::OutputPath() << "testWebRtcVadDtx_outFile_" in Test() 222 webrtc::test::OutputPath() + "testOpusDtx_outFile_mono.pcm"; in Perform() 240 out_filename = webrtc::test::OutputPath() + "testOpusDtx_outFile_stereo.pcm"; in Perform()
|
D | EncodeDecodeTest.cc | 138 file_stream << webrtc::test::OutputPath() << out_file_name << file_num in Setup() 247 webrtc::test::OutputPath(), "encode_decode_rtp"); in Perform()
|
/external/clang/lib/Frontend/ |
D | HeaderIncludeGen.cpp | 81 bool ShowAllHeaders, StringRef OutputPath, in AttachHeaderIncludeGen() argument 87 if (!OutputPath.empty()) { in AttachHeaderIncludeGen() 90 OutputPath.str(), EC, llvm::sys::fs::F_Append | llvm::sys::fs::F_Text); in AttachHeaderIncludeGen()
|
D | CompilerInstance.cpp | 371 StringRef OutputPath = DepOpts.HeaderIncludeOutputFile; in createPreprocessor() local 372 if (OutputPath == "-") in createPreprocessor() 373 OutputPath = ""; in createPreprocessor() 375 /*ShowAllHeaders=*/true, OutputPath, in createPreprocessor() 595 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument 602 OutputPath, EC, Binary, RemoveFileOnSignal, InFile, Extension, in createOutputFile() 605 getDiagnostics().Report(diag::err_fe_unable_to_open_output) << OutputPath in createOutputFile() 620 StringRef OutputPath, std::error_code &Error, bool Binary, in createOutputFile() argument 628 if (!OutputPath.empty()) { in createOutputFile() 629 OutFile = OutputPath; in createOutputFile() [all …]
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/ToolDrivers/llvm-lib/ |
D | LibDriver.cpp | 374 std::string OutputPath; in libDriverMain() local 376 OutputPath = Arg->getValue(); in libDriverMain() 378 OutputPath = getDefaultOutputPath(Members[0]); in libDriverMain() 389 computeArchiveRelativePath(OutputPath, Member.MemberName); in libDriverMain() 396 writeArchive(OutputPath, Members, in libDriverMain() 400 llvm::errs() << OutputPath << ": " << EI.message() << "\n"; in libDriverMain()
|
/external/webrtc/rtc_tools/ |
D | video_file_writer_unittest.cc | 30 TempFilename(webrtc::test::OutputPath(), "test_video_file.y4m"); in SetUp() 71 TempFilename(webrtc::test::OutputPath(), "test_video_file2.y4m"); in WriteVideoY4m() 85 TempFilename(webrtc::test::OutputPath(), "test_video_file2.yuv"); in WriteVideoYuv()
|
D | video_file_reader_unittest.cc | 27 TempFilename(webrtc::test::OutputPath(), "test_video_file.y4m"); in SetUp() 80 TempFilename(webrtc::test::OutputPath(), "test_video_file.yuv"); in SetUp()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ |
D | ThinLTOCodeGenerator.cpp | 862 SmallString<128> OutputPath(SavedObjectsDirectoryPath); in writeGeneratedObject() local 863 llvm::sys::path::append(OutputPath, in writeGeneratedObject() 865 OutputPath.c_str(); // Ensure the string is null terminated. in writeGeneratedObject() 866 if (sys::fs::exists(OutputPath)) in writeGeneratedObject() 867 sys::fs::remove(OutputPath); in writeGeneratedObject() 872 auto Err = sys::fs::create_hard_link(CacheEntryPath, OutputPath); in writeGeneratedObject() 874 return OutputPath.str(); in writeGeneratedObject() 876 Err = sys::fs::copy_file(CacheEntryPath, OutputPath); in writeGeneratedObject() 878 return OutputPath.str(); in writeGeneratedObject() 883 << "' to '" << OutputPath << "'\n"; in writeGeneratedObject() [all …]
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
D | TarWriter.cpp | 169 Expected<std::unique_ptr<TarWriter>> TarWriter::create(StringRef OutputPath, in create() argument 174 openFileForWrite(OutputPath, FD, CD_CreateAlways, OF_None)) in create() 175 return make_error<StringError>("cannot open " + OutputPath, EC); in create()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | TarWriter.cpp | 159 Expected<std::unique_ptr<TarWriter>> TarWriter::create(StringRef OutputPath, in create() argument 164 openFileForWrite(OutputPath, FD, CD_CreateAlways, OF_None)) in create() 165 return make_error<StringError>("cannot open " + OutputPath, EC); in create()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/LTO/ |
D | ThinLTOCodeGenerator.cpp | 933 SmallString<128> OutputPath(SavedObjectsDirectoryPath); in writeGeneratedObject() local 934 llvm::sys::path::append(OutputPath, in writeGeneratedObject() 936 OutputPath.c_str(); // Ensure the string is null terminated. in writeGeneratedObject() 937 if (sys::fs::exists(OutputPath)) in writeGeneratedObject() 938 sys::fs::remove(OutputPath); in writeGeneratedObject() 943 auto Err = sys::fs::create_hard_link(CacheEntryPath, OutputPath); in writeGeneratedObject() 945 return std::string(OutputPath.str()); in writeGeneratedObject() 947 Err = sys::fs::copy_file(CacheEntryPath, OutputPath); in writeGeneratedObject() 949 return std::string(OutputPath.str()); in writeGeneratedObject() 954 << "' to '" << OutputPath << "'\n"; in writeGeneratedObject() [all …]
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | PanelSplitFile.cpp | 351 FString OutputPath; member in CThreadCombine 358 if (!outFile.Create_NEW(OutputPath)) in ProcessVirt() 361 AddErrorPath(OutputPath); in ProcessVirt() 399 AddErrorPath(OutputPath); in ProcessVirt() 530 combiner.OutputPath = us2fs(destFilePath); in Combine() 531 if (fileInfo.Find(combiner.OutputPath)) in Combine()
|
/external/webrtc/modules/audio_processing/aec_dump/ |
D | aec_dump_unittest.cc | 27 webrtc::test::TempFilename(webrtc::test::OutputPath(), "aec_dump"); in TEST() 62 webrtc::test::TempFilename(webrtc::test::OutputPath(), "aec_dump"); in TEST()
|
/external/webrtc/test/ |
D | frame_generator_unittest.cc | 39 test::TempFilename(test::OutputPath(), "2_frame_yuv_file"); in SetUp() 41 test::TempFilename(test::OutputPath(), "1_frame_yuv_file"); in SetUp() 43 test::TempFilename(test::OutputPath(), "2_frame_nv12_file"); in SetUp() 45 test::TempFilename(test::OutputPath(), "1_frame_nv12_file"); in SetUp()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ToolDrivers/llvm-lib/ |
D | LibDriver.cpp | 355 std::string OutputPath = getOutputPath(&Args, Members[0]); in libDriverMain() local 362 computeArchiveRelativePath(OutputPath, Member.MemberName); in libDriverMain() 369 writeArchive(OutputPath, Members, in libDriverMain() 373 llvm::errs() << OutputPath << ": " << EI.message() << "\n"; in libDriverMain()
|
/external/webrtc/common_audio/ |
D | wav_file_unittest.cc | 38 const std::string outfile = test::OutputPath() + "wavtest1.wav"; in TEST() 115 std::string outfile = test::OutputPath() + "wavtest3.wav"; in TEST() 180 const std::string outfile = test::OutputPath() + "wavtest4.wav"; in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | TarWriter.h | 20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/ |
D | TarWriter.h | 20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
|
/external/webrtc/audio/test/ |
D | pc_low_bandwidth_audio_test.cc | 98 return webrtc::test::OutputPath() + "PCLowBandwidth_" + test_info->name() + in AudioOutputFile() 103 return webrtc::test::OutputPath() + "PCLowBandwidth_perf_" + in PerfResultsOutputFile()
|