Home
last modified time | relevance | path

Searched refs:ActionList (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DAction.h49 using size_type = ActionList::size_type;
50 using input_iterator = ActionList::iterator;
51 using input_const_iterator = ActionList::const_iterator;
107 ActionList Inputs;
136 : Action(Kind, ActionList({Input}), Type) {} in Action()
150 ActionList &getInputs() { return Inputs; } in getInputs()
151 const ActionList &getInputs() const { return Inputs; } in getInputs()
287 ActionList DeviceActions;
521 LinkJobAction(ActionList &Inputs, types::ID Type);
532 LipoJobAction(ActionList &Inputs, types::ID Type);
[all …]
H A DCompilation.h76 ActionList Actions;
205 ActionList &getActions() { return Actions; } in getActions()
206 const ActionList &getActions() const { return Actions; } in getActions()
H A DUtil.h25 typedef SmallVector<Action*, 3> ActionList; typedef
H A DDriver.h345 const InputList &Inputs, ActionList &Actions) const;
478 const InputList &Inputs, ActionList &Actions) const;
/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/
H A DAction.cpp341 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type) in JobAction()
392 IfsMergeJobAction::IfsMergeJobAction(ActionList &Inputs, types::ID Type) in IfsMergeJobAction()
397 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type) in LinkJobAction()
402 LipoJobAction::LipoJobAction(ActionList &Inputs, types::ID Type) in LipoJobAction()
407 DsymutilJobAction::DsymutilJobAction(ActionList &Inputs, types::ID Type) in DsymutilJobAction()
432 OffloadBundlingJobAction::OffloadBundlingJobAction(ActionList &Inputs) in OffloadBundlingJobAction()
442 OffloadPackagerJobAction::OffloadPackagerJobAction(ActionList &Inputs, in OffloadPackagerJobAction()
448 LinkerWrapperJobAction::LinkerWrapperJobAction(ActionList &Inputs, in LinkerWrapperJobAction()
454 StaticLibJobAction::StaticLibJobAction(ActionList &Inputs, types::ID Type) in StaticLibJobAction()
H A DDriver.cpp2443 ActionList SingleActions; in BuildUniversalActions()
2459 ActionList Inputs; in BuildUniversalActions()
2482 ActionList Inputs; in BuildUniversalActions()
3460 ActionList AL; in getDeviceDependences()
3469 ActionList AL; in getDeviceDependences()
3579 ActionList Actions; in appendLinkDeviceActions()
3819 ActionList OffloadAL; in appendTopLevelActions()
3862 ActionList DeviceAL; in makeHostLinkAction()
4128 ActionList LinkerInputs; in BuildActions()
4129 ActionList MergerInputs; in BuildActions()
[all …]
/freebsd-14.2/contrib/googletest/docs/
H A Dgmock_cheat_sheet.md175 ## Actions {#ActionList}
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelMatchTable.h461 using ActionList = std::list<std::unique_ptr<MatchAction>>;
462 using action_iterator = ActionList::iterator;
474 ActionList Actions;
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp90 const driver::ActionList &Actions = Compilation->getActions(); in ignoreExtraCC1Commands()