Home | History | Annotate | Download | only in Frontend

Lines Matching refs:OutputFile

62   if (CI.getFrontendOpts().OutputFile.empty())
83 std::string OutputFile;
85 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
90 return new PCHGenerator(CI.getPreprocessor(), OutputFile, 0, Sysroot, OS);
96 std::string &OutputFile,
107 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
113 OutputFile = CI.getFrontendOpts().OutputFile;
120 std::string OutputFile;
122 if (ComputeASTConsumerArguments(CI, InFile, Sysroot, OutputFile, OS))
125 return new PCHGenerator(CI.getPreprocessor(), OutputFile, Module,
326 std::string &OutputFile,
330 if (CI.getFrontendOpts().OutputFile.empty()) {
335 CI.getFrontendOpts().OutputFile = ModuleFileName.str();
341 OS = CI.createOutputFile(CI.getFrontendOpts().OutputFile, /*Binary=*/true,
348 OutputFile = CI.getFrontendOpts().OutputFile;
393 if (CI.getFrontendOpts().OutputFile.empty() ||
394 CI.getFrontendOpts().OutputFile == "-") {