Lines Matching refs:OutputPath

526     StringRef OutputPath = DepOpts.HeaderIncludeOutputFile;  in createPreprocessor()  local
527 if (OutputPath == "-") in createPreprocessor()
528 OutputPath = ""; in createPreprocessor()
530 /*ShowAllHeaders=*/true, OutputPath, in createPreprocessor()
812 StringRef OutputPath = getFrontendOpts().OutputFile; in createDefaultOutputFile() local
814 if (OutputPath.empty()) { in createDefaultOutputFile()
816 OutputPath = "-"; in createDefaultOutputFile()
820 OutputPath = *PathStorage; in createDefaultOutputFile()
824 return createOutputFile(OutputPath, Binary, RemoveFileOnSignal, in createDefaultOutputFile()
834 CompilerInstance::createOutputFile(StringRef OutputPath, bool Binary, in createOutputFile() argument
838 createOutputFileImpl(OutputPath, Binary, RemoveFileOnSignal, UseTemporary, in createOutputFile()
843 << OutputPath << errorToErrorCode(OS.takeError()).message(); in createOutputFile()
848 CompilerInstance::createOutputFileImpl(StringRef OutputPath, bool Binary, in createOutputFileImpl() argument
858 if (OutputPath != "-" && !llvm::sys::path::is_absolute(OutputPath)) { in createOutputFileImpl()
862 AbsPath.emplace(OutputPath); in createOutputFileImpl()
864 OutputPath = *AbsPath; in createOutputFileImpl()
871 if (OutputPath == "-") in createOutputFileImpl()
875 llvm::sys::fs::status(OutputPath, Status); in createOutputFileImpl()
878 if (!llvm::sys::fs::can_write(OutputPath)) in createOutputFileImpl()
896 StringRef OutputExtension = llvm::sys::path::extension(OutputPath); in createOutputFileImpl()
898 StringRef(OutputPath).drop_back(OutputExtension.size()); in createOutputFileImpl()
914 StringRef Parent = llvm::sys::path::parent_path(OutputPath); in createOutputFileImpl()
941 OSFile = OutputPath; in createOutputFileImpl()
952 OutputFiles.emplace_back(((OutputPath != "-") ? OutputPath : "").str(), in createOutputFileImpl()