Lines Matching refs:Act
118 FrontendAction *Act = CreateFrontendBaseAction(CI); in CreateFrontendAction() local
119 if (!Act) in CreateFrontendAction()
125 Act = new FixItRecompile(Act); in CreateFrontendAction()
136 Act = new arcmt::CheckAction(Act); in CreateFrontendAction()
139 Act = new arcmt::ModifyAction(Act); in CreateFrontendAction()
142 Act = new arcmt::MigrateAction(Act, in CreateFrontendAction()
150 Act = new arcmt::ObjCMigrateAction(Act, FEOpts.MTMigrateDir, in CreateFrontendAction()
159 Act = new ASTMergeAction(Act, FEOpts.ASTMergeFiles); in CreateFrontendAction()
161 return Act; in CreateFrontendAction()
219 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang)); in ExecuteCompilerInvocation() local
220 if (!Act) in ExecuteCompilerInvocation()
222 bool Success = Clang->ExecuteAction(*Act); in ExecuteCompilerInvocation()
224 BuryPointer(std::move(Act)); in ExecuteCompilerInvocation()