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()
811 StringRef OutputPath = getFrontendOpts().OutputFile; in createDefaultOutputFile() local
813 if (OutputPath.empty()) { in createDefaultOutputFile()
815 OutputPath = "-"; in createDefaultOutputFile()
819 OutputPath = *PathStorage; in createDefaultOutputFile()
823 return createOutputFile(OutputPath, Binary, RemoveFileOnSignal, in createDefaultOutputFile()
833 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
837 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary, in createOutputFile()
842 << OutputPath << errorToErrorCode(OS.takeError()).message(); in createOutputFile()
847 CompilerInstance::createOutputFileImpl(StringRef OutputPath, bool Binary, in createOutputFileImpl() argument
857 if (OutputPath != "-" && !llvm::sys::path::is_absolute(OutputPath)) { in createOutputFileImpl()
861 AbsPath.emplace(OutputPath); in createOutputFileImpl()
863 OutputPath = *AbsPath; in createOutputFileImpl()
870 if (OutputPath == "-") in createOutputFileImpl()
874 llvm::sys::fs::status(OutputPath, Status); in createOutputFileImpl()
877 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFileImpl()
895 StringRef OutputExtension = llvm::sys::path::extension(OutputPath); in createOutputFileImpl()
897 StringRef(OutputPath).drop_back(OutputExtension.size()); in createOutputFileImpl()
913 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFileImpl()
940 OSFile = OutputPath; in createOutputFileImpl()
951 OutputFiles.emplace_back(((OutputPath != "-") ? OutputPath : "").str(), in createOutputFileImpl()