Home | History | Annotate | Download | only in Rewrite

Lines Matching refs:CI

30 ASTConsumer *HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI,
32 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
33 return CreateHTMLPrinter(OS, CI.getPreprocessor());
40 ASTConsumer *FixItAction::CreateASTConsumer(CompilerInstance &CI,
69 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI,
79 Rewriter.reset(new FixItRewriter(CI.getDiagnostics(), CI.getSourceManager(),
80 CI.getLangOpts(), FixItOpts.get()));
93 ASTConsumer *RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI,
95 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile, "cpp"))
97 CI.getDiagnostics(), CI.getLangOpts(),
98 CI.getDiagnosticOpts().NoRewriteMacros);
103 CompilerInstance &CI = getCompilerInstance();
104 raw_ostream *OS = CI.createDefaultOutputFile(true, getCurrentFile());
107 RewriteMacrosInInput(CI.getPreprocessor(), OS);
111 CompilerInstance &CI = getCompilerInstance();
112 raw_ostream *OS = CI.createDefaultOutputFile(false, getCurrentFile());
115 DoRewriteTest(CI.getPreprocessor(), OS);