Lines Matching refs:OutputPath
449 StringRef OutputPath = DepOpts.HeaderIncludeOutputFile; in createPreprocessor() local
450 if (OutputPath == "-") in createPreprocessor()
451 OutputPath = ""; in createPreprocessor()
453 /*ShowAllHeaders=*/true, OutputPath, in createPreprocessor()
687 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
694 OutputPath, EC, Binary, RemoveFileOnSignal, InFile, Extension, in createOutputFile()
697 getDiagnostics().Report(diag::err_fe_unable_to_open_output) << OutputPath in createOutputFile()
711 StringRef OutputPath, std::error_code &Error, bool Binary, in createOutputFile() argument
719 if (!OutputPath.empty()) { in createOutputFile()
720 OutFile = OutputPath; in createOutputFile()
739 llvm::sys::fs::status(OutputPath, Status); in createOutputFile()
742 if (!llvm::sys::fs::can_write(OutputPath)) { in createOutputFile()
772 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFile()