Lines Matching defs:Input

183     : Action(InputClass, _Type), Input(_Input), Id(_Id.str()) {}
187 BindArchAction::BindArchAction(Action *Input, StringRef ArchName)
188 : Action(BindArchClass, Input), ArchName(ArchName) {}
344 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
345 : Action(Kind, Input, Type) {}
352 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType)
353 : JobAction(PreprocessJobClass, Input, OutputType) {}
357 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType)
358 : JobAction(PrecompileJobClass, Input, OutputType) {}
360 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input,
362 : JobAction(Kind, Input, OutputType) {
373 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType)
374 : JobAction(AnalyzeJobClass, Input, OutputType) {}
378 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType)
379 : JobAction(MigrateJobClass, Input, OutputType) {}
383 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType)
384 : JobAction(CompileJobClass, Input, OutputType) {}
388 BackendJobAction::BackendJobAction(Action *Input, types::ID OutputType)
389 : JobAction(BackendJobClass, Input, OutputType) {}
393 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType)
394 : JobAction(AssembleJobClass, Input, OutputType) {}
418 VerifyJobAction::VerifyJobAction(ActionClass Kind, Action *Input,
420 : JobAction(Kind, Input, Type) {
427 VerifyDebugInfoJobAction::VerifyDebugInfoJobAction(Action *Input,
429 : VerifyJobAction(VerifyDebugInfoJobClass, Input, Type) {}
433 VerifyPCHJobAction::VerifyPCHJobAction(Action *Input, types::ID Type)
434 : VerifyJobAction(VerifyPCHJobClass, Input, Type) {}
443 OffloadUnbundlingJobAction::OffloadUnbundlingJobAction(Action *Input)
444 : JobAction(OffloadUnbundlingJobClass, Input, Input->getType()) {}
465 BinaryAnalyzeJobAction::BinaryAnalyzeJobAction(Action *Input, types::ID Type)
466 : JobAction(BinaryAnalyzeJobClass, Input, Type) {}