Lines Matching refs:Input

175     : Action(InputClass, _Type), Input(_Input), Id(_Id.str()) {}  in InputAction()
179 BindArchAction::BindArchAction(Action *Input, StringRef ArchName) in BindArchAction() argument
180 : Action(BindArchClass, Input), ArchName(ArchName) {} in BindArchAction()
336 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction() argument
337 : Action(Kind, Input, Type) {} in JobAction()
344 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction() argument
345 : JobAction(PreprocessJobClass, Input, OutputType) {} in PreprocessJobAction()
349 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction() argument
350 : JobAction(PrecompileJobClass, Input, OutputType) {} in PrecompileJobAction()
352 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input, in PrecompileJobAction() argument
354 : JobAction(Kind, Input, OutputType) { in PrecompileJobAction()
365 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction() argument
366 : JobAction(AnalyzeJobClass, Input, OutputType) {} in AnalyzeJobAction()
370 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction() argument
371 : JobAction(MigrateJobClass, Input, OutputType) {} in MigrateJobAction()
375 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) in CompileJobAction() argument
376 : JobAction(CompileJobClass, Input, OutputType) {} in CompileJobAction()
380 BackendJobAction::BackendJobAction(Action *Input, types::ID OutputType) in BackendJobAction() argument
381 : JobAction(BackendJobClass, Input, OutputType) {} in BackendJobAction()
385 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType) in AssembleJobAction() argument
386 : JobAction(AssembleJobClass, Input, OutputType) {} in AssembleJobAction()
410 VerifyJobAction::VerifyJobAction(ActionClass Kind, Action *Input, in VerifyJobAction() argument
412 : JobAction(Kind, Input, Type) { in VerifyJobAction()
419 VerifyDebugInfoJobAction::VerifyDebugInfoJobAction(Action *Input, in VerifyDebugInfoJobAction() argument
421 : VerifyJobAction(VerifyDebugInfoJobClass, Input, Type) {} in VerifyDebugInfoJobAction()
425 VerifyPCHJobAction::VerifyPCHJobAction(Action *Input, types::ID Type) in VerifyPCHJobAction() argument
426 : VerifyJobAction(VerifyPCHJobClass, Input, Type) {} in VerifyPCHJobAction()
435 OffloadUnbundlingJobAction::OffloadUnbundlingJobAction(Action *Input) in OffloadUnbundlingJobAction() argument
436 : JobAction(OffloadUnbundlingJobClass, Input, Input->getType()) {} in OffloadUnbundlingJobAction()