Lines Matching refs:OutputPath

525     StringRef OutputPath = DepOpts.HeaderIncludeOutputFile;  in createPreprocessor()  local
526 if (OutputPath == "-") in createPreprocessor()
527 OutputPath = ""; in createPreprocessor()
529 /*ShowAllHeaders=*/true, 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()
758 return createOutputFile(OutputPath, Binary, RemoveFileOnSignal, in createDefaultOutputFile()
768 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
772 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary, in createOutputFile()
777 << OutputPath << errorToErrorCode(OS.takeError()).message(); in createOutputFile()
782 CompilerInstance::createOutputFileImpl(StringRef OutputPath, bool Binary, in createOutputFileImpl() argument
793 if (OutputPath == "-") in createOutputFileImpl()
797 llvm::sys::fs::status(OutputPath, Status); in createOutputFileImpl()
800 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFileImpl()
818 StringRef OutputExtension = llvm::sys::path::extension(OutputPath); in createOutputFileImpl()
820 StringRef(OutputPath).drop_back(OutputExtension.size()); in createOutputFileImpl()
831 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFileImpl()
850 OSFile = OutputPath; in createOutputFileImpl()
865 OutputFiles.emplace_back(((OutputPath != "-") ? OutputPath : "").str(), in createOutputFileImpl()