Home
last modified time | relevance | path

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

/src/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;
134 Action(ActionClass Kind, types::ID Type) : Action(Kind, ActionList(), Type) {} in Action()
136 : Action(Kind, ActionList({Input}), Type) {} in Action()
138 : Action(Kind, ActionList({Input}), Input->getType()) {} in Action()
139 Action(ActionClass Kind, const ActionList &Inputs, types::ID Type) in Action()
150 ActionList &getInputs() { return Inputs; } in getInputs()
151 const ActionList &getInputs() const { return Inputs; } in getInputs()
[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.h356 const InputList &Inputs, ActionList &Actions) const;
486 const InputList &Inputs, ActionList &Actions) const;
/src/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.cpp2400 const ActionList *AL = &A->getInputs();
2461 ActionList &Actions = C.getActions(); in BuildUniversalActions()
2489 ActionList SingleActions; in BuildUniversalActions()
2505 ActionList Inputs; in BuildUniversalActions()
2528 ActionList Inputs; in BuildUniversalActions()
2916 virtual void appendTopLevelActions(ActionList &AL) {} in appendTopLevelActions()
2919 virtual void appendLinkDeviceActions(ActionList &AL) {} in appendLinkDeviceActions()
2922 virtual Action* appendLinkHostActions(ActionList &AL) { return nullptr; } in appendLinkHostActions()
2971 ActionList CudaDeviceActions;
3102 void appendTopLevelActions(ActionList &AL) override { in appendTopLevelActions()
[all …]
/src/contrib/googletest/docs/
H A Dgmock_cheat_sheet.md175 ## Actions {#ActionList}
/src/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DGlobalISelMatchTable.h461 using ActionList = std::list<std::unique_ptr<MatchAction>>;
462 using action_iterator = ActionList::iterator;
474 ActionList Actions;
/src/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp90 const driver::ActionList &Actions = Compilation->getActions(); in ignoreExtraCC1Commands()