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()
749 StringRef OutputPath = getFrontendOpts().OutputFile; in createDefaultOutputFile() local
751 if (OutputPath.empty()) { in createDefaultOutputFile()
753 OutputPath = "-"; in createDefaultOutputFile()
757 OutputPath = *PathStorage; in createDefaultOutputFile()
761 return createOutputFile(OutputPath, Binary, RemoveFileOnSignal, in createDefaultOutputFile()
771 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
775 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary, in createOutputFile()
780 << OutputPath << errorToErrorCode(OS.takeError()).message(); in createOutputFile()
785 CompilerInstance::createOutputFileImpl(StringRef OutputPath, bool Binary, in createOutputFileImpl() argument
796 if (OutputPath == "-") in createOutputFileImpl()
800 llvm::sys::fs::status(OutputPath, Status); in createOutputFileImpl()
803 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFileImpl()
821 StringRef OutputExtension = llvm::sys::path::extension(OutputPath); in createOutputFileImpl()
823 StringRef(OutputPath).drop_back(OutputExtension.size()); in createOutputFileImpl()
837 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFileImpl()
862 OSFile = OutputPath; in createOutputFileImpl()
873 OutputFiles.emplace_back(((OutputPath != "-") ? OutputPath : "").str(), in createOutputFileImpl()