Home
last modified time | relevance | path

Searched refs:OutputPath (Results 1 – 25 of 83) sorted by relevance

1234

/external/webrtc/test/testsupport/
Dfile_utils_unittest.cc106 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()
Dfile_utils_override.h36 std::string OutputPath();
/external/clang/tools/driver/
Dcc1as_main.cpp102 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/
DNetTest.sh21 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/
Dnetwork_tester_unittest.cc26 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/
DTwoWayCommunication.cc91 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()
DTestVADDTX.cc210 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()
DEncodeDecodeTest.cc138 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/
DHeaderIncludeGen.cpp81 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()
DCompilerInstance.cpp371 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/
DLibDriver.cpp374 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/
Dvideo_file_writer_unittest.cc30 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()
Dvideo_file_reader_unittest.cc27 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/
DThinLTOCodeGenerator.cpp862 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/
DTarWriter.cpp169 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/
DTarWriter.cpp159 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/
DThinLTOCodeGenerator.cpp933 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/
DPanelSplitFile.cpp351 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/
Daec_dump_unittest.cc27 webrtc::test::TempFilename(webrtc::test::OutputPath(), "aec_dump"); in TEST()
62 webrtc::test::TempFilename(webrtc::test::OutputPath(), "aec_dump"); in TEST()
/external/webrtc/test/
Dframe_generator_unittest.cc39 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/
DLibDriver.cpp355 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/
Dwav_file_unittest.cc38 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/
DTarWriter.h20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
DTarWriter.h20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
/external/webrtc/audio/test/
Dpc_low_bandwidth_audio_test.cc98 return webrtc::test::OutputPath() + "PCLowBandwidth_" + test_info->name() + in AudioOutputFile()
103 return webrtc::test::OutputPath() + "PCLowBandwidth_perf_" + in PerfResultsOutputFile()

1234