• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/

Lines Matching defs:Input

167     : Action(InputClass, _Type), Input(_Input) {}
171 BindArchAction::BindArchAction(Action *Input, StringRef ArchName)
172 : Action(BindArchClass, Input), ArchName(ArchName) {}
309 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
310 : Action(Kind, Input, Type) {}
317 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType)
318 : JobAction(PreprocessJobClass, Input, OutputType) {}
322 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType)
323 : JobAction(PrecompileJobClass, Input, OutputType) {}
325 PrecompileJobAction::PrecompileJobAction(ActionClass Kind, Action *Input,
327 : JobAction(Kind, Input, OutputType) {
334 Action *Input, types::ID OutputType, const char *ModuleName)
335 : PrecompileJobAction(HeaderModulePrecompileJobClass, Input, OutputType),
340 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType)
341 : JobAction(AnalyzeJobClass, Input, OutputType) {}
345 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType)
346 : JobAction(MigrateJobClass, Input, OutputType) {}
350 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType)
351 : JobAction(CompileJobClass, Input, OutputType) {}
355 BackendJobAction::BackendJobAction(Action *Input, types::ID OutputType)
356 : JobAction(BackendJobClass, Input, OutputType) {}
360 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType)
361 : JobAction(AssembleJobClass, Input, OutputType) {}
385 VerifyJobAction::VerifyJobAction(ActionClass Kind, Action *Input,
387 : JobAction(Kind, Input, Type) {
394 VerifyDebugInfoJobAction::VerifyDebugInfoJobAction(Action *Input,
396 : VerifyJobAction(VerifyDebugInfoJobClass, Input, Type) {}
400 VerifyPCHJobAction::VerifyPCHJobAction(Action *Input, types::ID Type)
401 : VerifyJobAction(VerifyPCHJobClass, Input, Type) {}
410 OffloadUnbundlingJobAction::OffloadUnbundlingJobAction(Action *Input)
411 : JobAction(OffloadUnbundlingJobClass, Input, Input->getType()) {}