Lines Matching refs:OutputPath
371 StringRef OutputPath = DepOpts.HeaderIncludeOutputFile; in createPreprocessor() local
372 if (OutputPath == "-") in createPreprocessor()
373 OutputPath = ""; in createPreprocessor()
375 /*ShowAllHeaders=*/true, OutputPath, in createPreprocessor()
595 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
602 OutputPath, EC, Binary, RemoveFileOnSignal, InFile, Extension, in createOutputFile()
605 getDiagnostics().Report(diag::err_fe_unable_to_open_output) << OutputPath in createOutputFile()
620 StringRef OutputPath, std::error_code &Error, bool Binary, in createOutputFile() argument
628 if (!OutputPath.empty()) { in createOutputFile()
629 OutFile = OutputPath; in createOutputFile()
648 llvm::sys::fs::status(OutputPath, Status); in createOutputFile()
651 if (!llvm::sys::fs::can_write(OutputPath)) { in createOutputFile()
675 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFile()