Lines Matching refs:OutputPath
363 StringRef OutputPath = DepOpts.HeaderIncludeOutputFile; in createPreprocessor() local
364 if (OutputPath == "-") in createPreprocessor()
365 OutputPath = ""; in createPreprocessor()
366 AttachHeaderIncludeGen(*PP, /*ShowAllHeaders=*/true, OutputPath, in createPreprocessor()
574 CompilerInstance::createOutputFile(StringRef OutputPath, in createOutputFile() argument
583 OutputPath, EC, Binary, RemoveFileOnSignal, InFile, Extension, in createOutputFile()
586 getDiagnostics().Report(diag::err_fe_unable_to_open_output) << OutputPath in createOutputFile()
600 StringRef OutputPath, std::error_code &Error, bool Binary, in createOutputFile() argument
608 if (!OutputPath.empty()) { in createOutputFile()
609 OutFile = OutputPath; in createOutputFile()
628 llvm::sys::fs::status(OutputPath, Status); in createOutputFile()
631 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFile()
653 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFile()