Lines Matching refs:Input

169     : Action(InputClass, _Type), Input(_Input), Id(_Id.str()) {}  in InputAction()
173 BindArchAction::BindArchAction(Action *Input, StringRef ArchName) in BindArchAction() argument
174 : Action(BindArchClass, Input), ArchName(ArchName) {} in BindArchAction()
311 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction() argument
312 : Action(Kind, Input, Type) {} in JobAction()
319 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction() argument
320 : JobAction(PreprocessJobClass, Input, OutputType) {} in PreprocessJobAction()
324 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction() argument
325 : JobAction(PrecompileJobClass, Input, OutputType) {} in PrecompileJobAction()
327 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input, in PrecompileJobAction() argument
329 : JobAction(Kind, Input, OutputType) { in PrecompileJobAction()
336 Action *Input, types::ID OutputType, const char *ModuleName) in HeaderModulePrecompileJobAction() argument
337 : PrecompileJobAction(HeaderModulePrecompileJobClass, Input, OutputType), in HeaderModulePrecompileJobAction()
342 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction() argument
343 : JobAction(AnalyzeJobClass, Input, OutputType) {} in AnalyzeJobAction()
347 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction() argument
348 : JobAction(MigrateJobClass, Input, OutputType) {} in MigrateJobAction()
352 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) in CompileJobAction() argument
353 : JobAction(CompileJobClass, Input, OutputType) {} in CompileJobAction()
357 BackendJobAction::BackendJobAction(Action *Input, types::ID OutputType) in BackendJobAction() argument
358 : JobAction(BackendJobClass, Input, OutputType) {} in BackendJobAction()
362 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType) in AssembleJobAction() argument
363 : JobAction(AssembleJobClass, Input, OutputType) {} in AssembleJobAction()
387 VerifyJobAction::VerifyJobAction(ActionClass Kind, Action *Input, in VerifyJobAction() argument
389 : JobAction(Kind, Input, Type) { in VerifyJobAction()
396 VerifyDebugInfoJobAction::VerifyDebugInfoJobAction(Action *Input, in VerifyDebugInfoJobAction() argument
398 : VerifyJobAction(VerifyDebugInfoJobClass, Input, Type) {} in VerifyDebugInfoJobAction()
402 VerifyPCHJobAction::VerifyPCHJobAction(Action *Input, types::ID Type) in VerifyPCHJobAction() argument
403 : VerifyJobAction(VerifyPCHJobClass, Input, Type) {} in VerifyPCHJobAction()
412 OffloadUnbundlingJobAction::OffloadUnbundlingJobAction(Action *Input) in OffloadUnbundlingJobAction() argument
413 : JobAction(OffloadUnbundlingJobClass, Input, Input->getType()) {} in OffloadUnbundlingJobAction()