Searched refs:OutputPath (Results 1 - 11 of 11) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTarWriter.h20 static Expected<std::unique_ptr<TarWriter>> create(StringRef OutputPath,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DTarWriter.cpp169 Expected<std::unique_ptr<TarWriter>> TarWriter::create(StringRef OutputPath, argument
174 openFileForWrite(OutputPath, FD, CD_CreateAlways, OF_None))
175 return make_error<StringError>("cannot open " + OutputPath, EC);
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DHeaderIncludeGen.cpp83 bool ShowAllHeaders, StringRef OutputPath,
103 if (!OutputPath.empty()) {
106 OutputPath.str(), EC,
81 AttachHeaderIncludeGen(Preprocessor &PP, const DependencyOutputOptions &DepOpts, bool ShowAllHeaders, StringRef OutputPath, bool ShowDepth, bool MSStyle) argument
H A DCompilerInstance.cpp525 StringRef OutputPath = DepOpts.HeaderIncludeOutputFile; local
526 if (OutputPath == "-")
527 OutputPath = "";
529 /*ShowAllHeaders=*/true, OutputPath,
535 /*ShowAllHeaders=*/true, /*OutputPath=*/"",
745 StringRef OutputPath = getFrontendOpts().OutputFile; local
747 if (OutputPath.empty()) {
749 OutputPath = "-";
753 OutputPath = *PathStorage;
758 return createOutputFile(OutputPath, Binar
768 createOutputFile(StringRef OutputPath, bool Binary, bool RemoveFileOnSignal, bool UseTemporary, bool CreateMissingDirectories) argument
782 createOutputFileImpl(StringRef OutputPath, bool Binary, bool RemoveFileOnSignal, bool UseTemporary, bool CreateMissingDirectories) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp355 std::string OutputPath; local
357 OutputPath = Arg->getValue();
359 OutputPath = getDefaultOutputPath(Members[0]);
370 computeArchiveRelativePath(OutputPath, Member.MemberName);
377 writeArchive(OutputPath, Members,
381 llvm::errs() << OutputPath << ": " << EI.message() << "\n";
/netbsd-current/external/apache2/llvm/dist/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp895 SmallString<128> OutputPath(SavedObjectsDirectoryPath);
896 llvm::sys::path::append(OutputPath,
898 OutputPath.c_str(); // Ensure the string is null terminated.
899 if (sys::fs::exists(OutputPath))
900 sys::fs::remove(OutputPath);
905 auto Err = sys::fs::create_hard_link(CacheEntryPath, OutputPath);
907 return std::string(OutputPath.str());
909 Err = sys::fs::copy_file(CacheEntryPath, OutputPath);
911 return std::string(OutputPath.str());
916 << "' to '" << OutputPath << "'\ local
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/tools/driver/
H A Dcc1as_main.cpp111 std::string OutputPath; member in struct:__anon1177::AssemblerInvocation
154 OutputPath = "-";
268 Opts.OutputPath = std::string(Args.getLastArgValue(OPT_o));
376 if (Opts.OutputPath.empty())
377 Opts.OutputPath = "-";
379 getOutputStream(Opts.OutputPath, Diags, IsBinary);
544 if (Opts.OutputPath != "-")
545 sys::fs::remove(Opts.OutputPath);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DUtils.h192 /// \param OutputPath - If non-empty, a path to write the header include
199 StringRef OutputPath = {},
H A DCompilerInstance.h714 createOutputFile(StringRef OutputPath, bool Binary, bool RemoveFileOnSignal,
720 /// If \p OutputPath is empty, then createOutputFile will derive an output
722 /// appended. If \p OutputPath is not stdout and \p UseTemporary
724 /// renamed to \p OutputPath in the end.
726 /// \param OutputPath - If given, the path to the output file.
732 /// OutputPath in the end.
736 createOutputFileImpl(StringRef OutputPath, bool Binary,
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp546 SmallString<256> OutputPath; local
548 OutputPath);
550 error(OutputPath, EC.message());
553 ToolOutputFile OutputTOF{OutputPath, OutputFD};
560 Optional<StringRef> Redirects[] = {InputPath.str(), OutputPath.str(), {""}};
571 auto BufOrError = MemoryBuffer::getFile(OutputPath);
573 error(OutputPath, BufOrError.getError().message());
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp1390 SmallString<128> OutputPath(OutputFile);
1392 SM.getFileManager().makeAbsolutePath(OutputPath);
1393 StringRef origDir = llvm::sys::path::parent_path(OutputPath);

Completed in 290 milliseconds