Home | History | Annotate | Download | only in FrontendTool

Lines Matching defs:Act

134   FrontendAction *Act = CreateFrontendBaseAction(CI);
135 if (!Act)
142 Act = new FixItRecompile(Act);
154 Act = new arcmt::CheckAction(Act);
157 Act = new arcmt::ModifyAction(Act);
160 Act = new arcmt::MigrateAction(Act,
168 Act = new arcmt::ObjCMigrateAction(Act, FEOpts.MTMigrateDir,
177 Act = new ASTMergeAction(Act, FEOpts.ASTMergeFiles);
179 return Act;
237 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang));
238 if (!Act)
240 bool Success = Clang->ExecuteAction(*Act);
242 BuryPointer(Act.release());