Searched refs:Action (Results 1 - 25 of 190) sorted by relevance

12345678

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DUtil.h19 class Action;
26 typedef SmallVector<Action*, 3> ActionList;
H A DAction.h1 //===- Action.h - Abstract compilation steps --------------------*- C++ -*-===//
35 /// Action - Represent an abstract compilation step to perform.
47 class Action { class in namespace:clang::driver
129 Action(ActionClass Kind, types::ID Type) : Action(Kind, ActionList(), Type) {} function in class:clang::driver::Action
130 Action(ActionClass Kind, Action *Input, types::ID Type) function in class:clang::driver::Action
131 : Action(Kind, ActionList({Input}), Type) {}
132 Action(ActionClass Kind, Action *Inpu function in class:clang::driver::Action
134 Action(ActionClass Kind, const ActionList &Inputs, types::ID Type) function in class:clang::driver::Action
[all...]
H A DCompilation.h13 #include "clang/Driver/Action.h"
60 std::multimap<Action::OffloadKind, const ToolChain *>
72 std::vector<std::unique_ptr<Action>> AllActions;
86 Action::OffloadKind DeviceOffloadKind = Action::OFK_None;
89 Action::OffloadKind DeviceOffloadKind)
137 unsigned isOffloadingHostKind(Action::OffloadKind Kind) const {
143 const std::multimap<Action::OffloadKind,
149 template <Action::OffloadKind Kind>
155 template <Action
[all...]
H A DDriver.h14 #include "clang/Driver/Action.h"
494 Action *ConstructPhaseAction(
496 Action *Input,
497 Action::OffloadKind TargetDeviceOffloadKind = Action::OFK_None) const;
501 /// jobs for a given (Action, ToolChain, BoundArch, DeviceKind) tuple once.
503 BuildJobsForAction(Compilation &C, const Action *A, const ToolChain *TC,
506 std::map<std::pair<const Action *, std::string>, InputInfo>
508 Action::OffloadKind TargetDeviceOffloadKind) const;
596 /// building jobs for the Action'
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp31 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
92 void CallingConvEmitter::EmitAction(Record *Action, argument
96 if (Action->isSubClassOf("CCPredicateAction")) {
99 if (Action->isSubClassOf("CCIfType")) {
100 ListInit *VTs = Action->getValueAsListInit("VTs");
107 } else if (Action->isSubClassOf("CCIf")) {
108 O << Action->getValueAsString("Predicate");
110 errs() << *Action;
111 PrintFatalError(Action->getLoc(), "Unknown CCPredicateAction!");
115 EmitAction(Action
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DAnalysis.h44 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
49 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileAction.h19 enum Action { enum in class:lldb_private::FileAction
38 Action GetAction() const { return m_action; }
49 Action m_action; // The action for this file
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DAction.cpp1 //===- Action.cpp - Abstract compilation steps ----------------------------===//
9 #include "clang/Driver/Action.h"
18 Action::~Action() = default;
20 const char *Action::getClassName(ActionClass AC) {
53 void Action::propagateDeviceOffloadInfo(OffloadKind OKind, const char *OArch) {
71 void Action::propagateHostOffloadInfo(unsigned OKinds, const char *OArch) {
85 void Action::propagateOffloadInfo(const Action *A) {
93 std::string Action
[all...]
H A DInputInfo.h12 #include "clang/Driver/Action.h"
41 const Action* Act;
45 static types::ID GetActionType(const Action *A) {
51 InputInfo(const Action *A, const char *_BaseInput)
58 InputInfo(const Action *A, const char *_Filename, const char *_BaseInput)
68 InputInfo(const Action *A, const llvm::opt::Arg *_InputArg,
80 const Action *getAction() const { return Act; }
81 void setAction(const Action *A) { Act = A; }
/freebsd-13-stable/contrib/googletest/googlemock/test/
H A Dgmock-generated-actions_test.cc53 using testing::Action;
170 Action<int(int, int(*)())> a = InvokeArgument<1>(); // NOLINT
176 Action<int(UnaryFunctor)> a = InvokeArgument<0>(true); // NOLINT
182 Action<int(int(*)(int, int, int, int, int))> a = // NOLINT
189 Action<int(SumOf5Functor)> a = // NOLINT
196 Action<int(int(*)(int, int, int, int, int, int))> a = // NOLINT
203 Action<int(SumOf6Functor)> a = // NOLINT
210 Action<std::string(std::string(*)(const char*, const char*, const char*,
219 Action<std::string(std::string(*)(const char*, const char*, const char*,
228 Action<st
[all...]
H A Dgmock-more-actions_test.cc54 using testing::Action;
234 Action<int()> a = Invoke(Nullary); // NOLINT
240 Action<bool(int)> a = Invoke(Unary); // NOLINT
247 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
254 Action<int(int, char, short)> a = Invoke(Ternary); // NOLINT
260 Action<int(int, int, int, int)> a = Invoke(SumOf4); // NOLINT
266 Action<int(int, int, int, int, int)> a = Invoke(SumOf5); // NOLINT
272 Action<int(int, int, int, int, int, int)> a = Invoke(SumOf6); // NOLINT
282 Action<std::string(const char*, const char*, const char*, const char*,
293 Action<st
[all...]
H A Dgmock-actions_test.cc57 using testing::Action;
396 Action<MyGlobalFunction> action = MakeAction(new MyActionImpl);
398 // When exercising the Perform() method of Action<F>, we must pass
406 // Tests that Action<F> can be contructed from a pointer to
409 Action<MyGlobalFunction> action(new MyActionImpl);
412 // Tests that Action<F> delegates actual work to ActionInterface<F>.
414 const Action<MyGlobalFunction> action(new MyActionImpl);
420 // Tests that Action<F> can be copied.
422 Action<MyGlobalFunction> a1(new MyActionImpl);
423 Action<MyGlobalFunctio
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/LineEditor/
H A DLineEditor.cpp56 CompletionAction Action; local
59 Action.Kind = CompletionAction::AK_ShowCompletions;
60 return Action;
71 Action.Kind = CompletionAction::AK_ShowCompletions;
74 Action.Completions.push_back(I->DisplayText);
76 Action.Kind = CompletionAction::AK_Insert;
77 Action.Text = CommonPrefix;
80 return Action;
86 CompletionAction Action; local
87 Action
145 LineEditor::CompletionAction Action = Data->LE->getCompletionAction( local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBTableGen.cpp32 static cl::opt<ActionType> Action(
33 cl::desc("Action to perform:"),
46 switch (Action) {
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp108 static const char *stringifyAction(AllocatorAction Action) { argument
109 switch (Action) {
124 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr) { argument
127 stringifyAction(Action), Ptr);
130 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr) { argument
133 stringifyAction(Action), Ptr);
138 void NORETURN reportDeallocTypeMismatch(AllocatorAction Action, void *Ptr, argument
142 stringifyAction(Action), Ptr, TypeA, TypeB);
H A Dreport.h42 void NORETURN reportInvalidChunkState(AllocatorAction Action, void *Ptr);
43 void NORETURN reportMisalignedPointer(AllocatorAction Action, void *Ptr);
44 void NORETURN reportDeallocTypeMismatch(AllocatorAction Action, void *Ptr,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DAnalysis.cpp98 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, argument
100 raw_ostream *DebugOS = Action != LLVMReturnStatusAction ? &errs() : nullptr;
110 if (Action == LLVMAbortProcessAction && Result)
119 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { argument
121 *unwrap<Function>(Fn), Action != LLVMReturnStatusAction ? &errs()
124 if (Action == LLVMAbortProcessAction && Result)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DStandaloneExecution.cpp63 auto &Action = Actions.front();
64 Tool.appendArgumentsAdjuster(Action.second);
66 if (Tool.run(Action.first.get()))
H A DExecution.cpp43 ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action) { argument
44 return execute(std::move(Action), ArgumentsAdjuster());
47 llvm::Error ToolExecutor::execute(std::unique_ptr<FrontendActionFactory> Action, argument
52 Actions.emplace_back(std::move(Action), std::move(Adjuster));
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutdelete.c171 UINT32 Action);
512 * Action - What to do (REF_INCREMENT or REF_DECREMENT)
523 UINT32 Action)
548 switch (Action)
608 Action));
631 * Action - Either REF_INCREMENT or REF_DECREMENT
649 UINT16 Action)
693 AcpiUtUpdateRefCount (PrevObject, Action);
726 AcpiUtUpdateRefCount (NextObject, Action);
735 NextObject, Action,
521 AcpiUtUpdateRefCount( ACPI_OPERAND_OBJECT *Object, UINT32 Action) argument
647 AcpiUtUpdateObjectReference( ACPI_OPERAND_OBJECT *Object, UINT16 Action) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h142 /// Calls 'Action' with the BoundNodes on every match.
146 /// Does not take ownership of 'Action'.
149 MatchCallback *Action);
151 MatchCallback *Action);
153 MatchCallback *Action);
155 MatchCallback *Action);
157 MatchCallback *Action);
159 MatchCallback *Action);
161 MatchCallback *Action);
173 MatchCallback *Action);
[all...]
/freebsd-13-stable/contrib/googletest/googlemock/include/gmock/
H A Dgmock-actions.h59 // 2. a factory function that creates an Action object from a
64 // management as Action objects can now be copied like plain values.
347 // An Action<F> is a copyable and IMMUTABLE (except by assignment)
349 // of type F is called. The implementation of Action<T> is just a
351 // Don't inherit from Action!
354 // concrete action (including its current state), and an Action<F>
357 class Action { class in namespace:testing
362 // Constructs a null Action. Needed for storing Action objects in
364 Action() {} function in class:testing::Action
373 Action(G&& fun) : fun_(::std::forward<G>(fun)) {} // NOLINT function in class:testing::Action
377 explicit Action(ActionInterface<F>* impl) : impl_(impl) {} function in class:testing::Action
1106 Action<To>::Action(const Action<From>& from) function in class:testing::Action
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h100 raw_ostream &operator<<(raw_ostream &OS, LegalizeActions::LegalizeAction Action);
153 LegalizeAction Action; member in struct:llvm::LegalizeActionStep
159 LegalizeActionStep(LegalizeAction Action, unsigned TypeIdx, argument
161 : Action(Action), TypeIdx(TypeIdx), NewType(NewType) {}
164 return std::tie(Action, TypeIdx, NewType) ==
165 std::tie(RHS.Action, RHS.TypeIdx, RHS.NewType);
328 LegalizeAction Action;
332 LegalizeRule(LegalityPredicate Predicate, LegalizeAction Action,
334 : Predicate(Predicate), Action(Actio
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp143 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction }; local
144 Actions.push_back(Action);
295 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) {
481 if (S.Action == 0)
482 Asm->OutStreamer->AddComment(" Action: cleanup");
484 Asm->OutStreamer->AddComment(" Action: " +
485 Twine((S.Action - 1) / 2 + 1));
487 Asm->emitULEB128(S.Action);
551 if (S.Action
566 const ActionEntry &Action = *I; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp1073 MatchCallback *Action) {
1074 Matchers.DeclOrStmt.emplace_back(NodeMatch, Action);
1075 Matchers.AllCallbacks.insert(Action);
1079 MatchCallback *Action) {
1080 Matchers.Type.emplace_back(NodeMatch, Action);
1081 Matchers.AllCallbacks.insert(Action);
1085 MatchCallback *Action) {
1086 Matchers.DeclOrStmt.emplace_back(NodeMatch, Action);
1087 Matchers.AllCallbacks.insert(Action);
1091 MatchCallback *Action) {
1072 addMatcher(const DeclarationMatcher &NodeMatch, MatchCallback *Action) argument
1078 addMatcher(const TypeMatcher &NodeMatch, MatchCallback *Action) argument
1084 addMatcher(const StatementMatcher &NodeMatch, MatchCallback *Action) argument
1090 addMatcher(const NestedNameSpecifierMatcher &NodeMatch, MatchCallback *Action) argument
1096 addMatcher(const NestedNameSpecifierLocMatcher &NodeMatch, MatchCallback *Action) argument
1102 addMatcher(const TypeLocMatcher &NodeMatch, MatchCallback *Action) argument
1108 addMatcher(const CXXCtorInitializerMatcher &NodeMatch, MatchCallback *Action) argument
1114 addDynamicMatcher(const internal::DynTypedMatcher &NodeMatch, MatchCallback *Action) argument
[all...]

Completed in 240 milliseconds

12345678