Lines Matching refs:OutputPath

527     StringRef OutputPath = DepOpts.HeaderIncludeOutputFile;  in createPreprocessor()  local
528 if (OutputPath == "-") in createPreprocessor()
529 OutputPath = ""; in createPreprocessor()
531 /*ShowAllHeaders=*/true, OutputPath, in createPreprocessor()
805 StringRef OutputPath = getFrontendOpts().OutputFile; in createDefaultOutputFile() local
807 if (OutputPath.empty()) { in createDefaultOutputFile()
809 OutputPath = "-"; in createDefaultOutputFile()
813 OutputPath = *PathStorage; in createDefaultOutputFile()
817 return createOutputFile(OutputPath, Binary, RemoveFileOnSignal, in createDefaultOutputFile()
827 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
831 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary, in createOutputFile()
836 << OutputPath << errorToErrorCode(OS.takeError()).message(); in createOutputFile()
841 CompilerInstance::createOutputFileImpl(StringRef OutputPath, bool Binary, in createOutputFileImpl() argument
852 if (OutputPath == "-") in createOutputFileImpl()
856 llvm::sys::fs::status(OutputPath, Status); in createOutputFileImpl()
859 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFileImpl()
877 StringRef OutputExtension = llvm::sys::path::extension(OutputPath); in createOutputFileImpl()
879 StringRef(OutputPath).drop_back(OutputExtension.size()); in createOutputFileImpl()
893 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFileImpl()
918 OSFile = OutputPath; in createOutputFileImpl()
929 OutputFiles.emplace_back(((OutputPath != "-") ? OutputPath : "").str(), in createOutputFileImpl()