Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp355 std::string OutputPath; in libDriverMain() local
357 OutputPath = Arg->getValue(); in libDriverMain()
359 OutputPath = getDefaultOutputPath(Members[0]); in libDriverMain()
370 computeArchiveRelativePath(OutputPath, Member.MemberName); in libDriverMain()
377 writeArchive(OutputPath, Members, in libDriverMain()
381 llvm::errs() << OutputPath << ": " << EI.message() << "\n"; in libDriverMain()
/netbsd/external/apache2/llvm/dist/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp895 SmallString<128> OutputPath(SavedObjectsDirectoryPath); in writeGeneratedObject() local
896 llvm::sys::path::append(OutputPath, in writeGeneratedObject()
898 OutputPath.c_str(); // Ensure the string is null terminated. in writeGeneratedObject()
899 if (sys::fs::exists(OutputPath)) in writeGeneratedObject()
900 sys::fs::remove(OutputPath); in writeGeneratedObject()
907 return std::string(OutputPath.str()); in writeGeneratedObject()
909 Err = sys::fs::copy_file(CacheEntryPath, OutputPath); in writeGeneratedObject()
911 return std::string(OutputPath.str()); in writeGeneratedObject()
916 << "' to '" << OutputPath << "'\n"; in writeGeneratedObject()
920 raw_fd_ostream OS(OutputPath, Err, sys::fs::OF_None); in writeGeneratedObject()
[all …]
/netbsd/external/apache2/llvm/dist/clang/tools/driver/
H A Dcc1as_main.cpp111 std::string OutputPath; member
154 OutputPath = "-"; in AssemblerInvocation()
268 Opts.OutputPath = std::string(Args.getLastArgValue(OPT_o)); in CreateFromArgs()
376 if (Opts.OutputPath.empty()) in ExecuteAssemblerImpl()
377 Opts.OutputPath = "-"; in ExecuteAssemblerImpl()
379 getOutputStream(Opts.OutputPath, Diags, IsBinary); in ExecuteAssemblerImpl()
544 if (Opts.OutputPath != "-") in ExecuteAssembler()
545 sys::fs::remove(Opts.OutputPath); in ExecuteAssembler()
/netbsd/external/apache2/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp526 if (OutputPath == "-") in createPreprocessor()
527 OutputPath = ""; in createPreprocessor()
745 StringRef OutputPath = getFrontendOpts().OutputFile; in createDefaultOutputFile() local
747 if (OutputPath.empty()) { in createDefaultOutputFile()
749 OutputPath = "-"; in createDefaultOutputFile()
753 OutputPath = *PathStorage; in createDefaultOutputFile()
793 if (OutputPath == "-") in createOutputFileImpl()
797 llvm::sys::fs::status(OutputPath, Status); in createOutputFileImpl()
800 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFileImpl()
850 OSFile = OutputPath; in createOutputFileImpl()
[all …]
H A DHeaderIncludeGen.cpp83 bool ShowAllHeaders, StringRef OutputPath, in AttachHeaderIncludeGen() argument
103 if (!OutputPath.empty()) { in AttachHeaderIncludeGen()
106 OutputPath.str(), EC, in AttachHeaderIncludeGen()
/netbsd/external/apache2/llvm/dist/llvm/lib/Support/
H A 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()
/netbsd/external/gpl3/gdb/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.csproj39 OutputPath = "bin\Debug\"
59 OutputPath = "bin\Release\"
/netbsd/external/gpl3/binutils/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.csproj39 OutputPath = "bin\Debug\"
59 OutputPath = "bin\Release\"
/netbsd/external/gpl3/gdb.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.csproj39 OutputPath = "bin\Debug\"
59 OutputPath = "bin\Release\"
/netbsd/external/gpl3/binutils.old/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.csproj39 OutputPath = "bin\Debug\"
59 OutputPath = "bin\Release\"
/netbsd/common/dist/zlib/contrib/dotzlib/DotZLib/
H A DDotZLib.csproj39 OutputPath = "bin\Debug\"
59 OutputPath = "bin\Release\"
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTarWriter.h20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp546 SmallString<256> OutputPath; in demangleSymbols() local
548 OutputPath); in demangleSymbols()
550 error(OutputPath, EC.message()); in demangleSymbols()
553 ToolOutputFile OutputTOF{OutputPath, OutputFD}; in demangleSymbols()
560 Optional<StringRef> Redirects[] = {InputPath.str(), OutputPath.str(), {""}}; in demangleSymbols()
571 auto BufOrError = MemoryBuffer::getFile(OutputPath); in demangleSymbols()
573 error(OutputPath, BufOrError.getError().message()); in demangleSymbols()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DCompilerInstance.h714 createOutputFile(StringRef OutputPath, bool Binary, bool RemoveFileOnSignal,
736 createOutputFileImpl(StringRef OutputPath, bool Binary,
H A DUtils.h199 StringRef OutputPath = {},
/netbsd/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp1390 SmallString<128> OutputPath(OutputFile); in WriteControlBlock() local
1392 SM.getFileManager().makeAbsolutePath(OutputPath); in WriteControlBlock()
1393 StringRef origDir = llvm::sys::path::parent_path(OutputPath); in WriteControlBlock()