Lines Matching refs:Input

178     : Action(InputClass, _Type), Input(_Input), Id(_Id.str()) {}  in InputAction()
182 BindArchAction::BindArchAction(Action *Input, StringRef ArchName) in BindArchAction() argument
183 : Action(BindArchClass, Input), ArchName(ArchName) {} in BindArchAction()
322 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction() argument
323 : Action(Kind, Input, Type) {} in JobAction()
330 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction() argument
331 : JobAction(PreprocessJobClass, Input, OutputType) {} in PreprocessJobAction()
335 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction() argument
336 : JobAction(PrecompileJobClass, Input, OutputType) {} in PrecompileJobAction()
338 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input, in PrecompileJobAction() argument
340 : JobAction(Kind, Input, OutputType) { in PrecompileJobAction()
347 Action *Input, types::ID OutputType, const char *ModuleName) in HeaderModulePrecompileJobAction() argument
348 : PrecompileJobAction(HeaderModulePrecompileJobClass, Input, OutputType), in HeaderModulePrecompileJobAction()
358 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction() argument
359 : JobAction(AnalyzeJobClass, Input, OutputType) {} in AnalyzeJobAction()
363 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction() argument
364 : JobAction(MigrateJobClass, Input, OutputType) {} in MigrateJobAction()
368 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) in CompileJobAction() argument
369 : JobAction(CompileJobClass, Input, OutputType) {} in CompileJobAction()
373 BackendJobAction::BackendJobAction(Action *Input, types::ID OutputType) in BackendJobAction() argument
374 : JobAction(BackendJobClass, Input, OutputType) {} in BackendJobAction()
378 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType) in AssembleJobAction() argument
379 : JobAction(AssembleJobClass, Input, OutputType) {} in AssembleJobAction()
403 VerifyJobAction::VerifyJobAction(ActionClass Kind, Action *Input, in VerifyJobAction() argument
405 : JobAction(Kind, Input, Type) { in VerifyJobAction()
412 VerifyDebugInfoJobAction::VerifyDebugInfoJobAction(Action *Input, in VerifyDebugInfoJobAction() argument
414 : VerifyJobAction(VerifyDebugInfoJobClass, Input, Type) {} in VerifyDebugInfoJobAction()
418 VerifyPCHJobAction::VerifyPCHJobAction(Action *Input, types::ID Type) in VerifyPCHJobAction() argument
419 : VerifyJobAction(VerifyPCHJobClass, Input, Type) {} in VerifyPCHJobAction()
428 OffloadUnbundlingJobAction::OffloadUnbundlingJobAction(Action *Input) in OffloadUnbundlingJobAction() argument
429 : JobAction(OffloadUnbundlingJobClass, Input, Input->getType()) {} in OffloadUnbundlingJobAction()