Lines Matching refs:OutputPath

534     StringRef OutputPath = DepOpts.HeaderIncludeOutputFile;  in createPreprocessor()  local
535 if (OutputPath == "-") in createPreprocessor()
536 OutputPath = ""; in createPreprocessor()
538 /*ShowAllHeaders=*/true, OutputPath, in createPreprocessor()
807 StringRef OutputPath = getFrontendOpts().OutputFile; in createDefaultOutputFile() local
809 if (OutputPath.empty()) { in createDefaultOutputFile()
811 OutputPath = "-"; in createDefaultOutputFile()
815 OutputPath = *PathStorage; in createDefaultOutputFile()
819 return createOutputFile(OutputPath, Binary, RemoveFileOnSignal, in createDefaultOutputFile()
829 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
833 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary, in createOutputFile()
838 << OutputPath << errorToErrorCode(OS.takeError()).message(); in createOutputFile()
843 CompilerInstance::createOutputFileImpl(StringRef OutputPath, bool Binary, in createOutputFileImpl() argument
853 if (OutputPath != "-" && !llvm::sys::path::is_absolute(OutputPath)) { in createOutputFileImpl()
854 AbsPath.emplace(OutputPath); in createOutputFileImpl()
856 OutputPath = *AbsPath; in createOutputFileImpl()
863 if (OutputPath == "-") in createOutputFileImpl()
867 llvm::sys::fs::status(OutputPath, Status); in createOutputFileImpl()
870 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFileImpl()
888 StringRef OutputExtension = llvm::sys::path::extension(OutputPath); in createOutputFileImpl()
890 StringRef(OutputPath).drop_back(OutputExtension.size()); in createOutputFileImpl()
904 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFileImpl()
929 OSFile = OutputPath; in createOutputFileImpl()
940 OutputFiles.emplace_back(((OutputPath != "-") ? OutputPath : "").str(), in createOutputFileImpl()