Home | History | Annotate | Download | only in FrontendTool

Lines Matching refs:Act

132   FrontendAction *Act = CreateFrontendBaseAction(CI);
133 if (!Act)
140 Act = new FixItRecompile(Act);
150 Act = new arcmt::CheckAction(Act);
153 Act = new arcmt::ModifyAction(Act);
156 Act = new arcmt::MigrateAction(Act,
164 Act = new arcmt::ObjCMigrateAction(Act, FEOpts.MTMigrateDir,
174 Act = new ASTMergeAction(Act, FEOpts.ASTMergeFiles);
176 return Act;
234 OwningPtr<FrontendAction> Act(CreateFrontendAction(*Clang));
235 if (!Act)
237 bool Success = Clang->ExecuteAction(*Act);
239 Act.take();