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

1234567

/netbsd-current/external/apache2/llvm/dist/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)
142 unsigned isOffloadingHostKind(Action::OffloadKind Kind) const {
148 const std::multimap<Action::OffloadKind,
154 template <Action::OffloadKind Kind>
160 template <Action
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
H A Dasan_exceptions_test.cc5 class Action { class
7 Action() {} function in class:Action
18 const Action a;
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp31 void EmitAction(Record *Action, unsigned Indent, raw_ostream &O);
94 void CallingConvEmitter::EmitAction(Record *Action, argument
98 if (Action->isSubClassOf("CCPredicateAction")) {
101 if (Action->isSubClassOf("CCIfType")) {
102 ListInit *VTs = Action->getValueAsListInit("VTs");
109 } else if (Action->isSubClassOf("CCIf")) {
110 O << Action->getValueAsString("Predicate");
112 errs() << *Action;
113 PrintFatalError(Action->getLoc(), "Unknown CCPredicateAction!");
117 EmitAction(Action
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DAnalysis.h44 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
49 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
/netbsd-current/external/apache2/llvm/dist/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; }
/netbsd-current/sys/external/bsd/acpica/dist/tools/acpidump/
H A Dapmain.c365 AP_DUMP_ACTION *Action; local
391 Action = &ActionTable[i];
392 switch (Action->ToBeDone)
401 Status = ApDumpTableByAddress (Action->Argument);
406 Status = ApDumpTableByName (Action->Argument);
411 Status = ApDumpTableFromFile (Action->Argument);
417 Action->ToBeDone);
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/sys/dev/acpi/
H A Dapei_interp.c50 * | Action=SET_ERROR_TYPE |
55 * | Action=SET_ERROR_TYPE |
60 * | Action=SET_ERROR_TYPE |
64 * | Action=SET_ERROR_TYPE |
68 * | Action=EXECUTE_OPERATION |
72 * | Action=SET_ERROR_TYPE |
222 if (E->Action >= I->nact || I->actname[E->Action] == NULL) {
224 I->name, i, E->Action);
227 struct apei_actinst *const A = &I->actinst[E->Action];
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-mips-elf/
H A Dcompact-eh1.s34 # Region 1 -- Action Chain
37 .sleb128 (0<<2)|0x1 # Action/Chain Pair
H A Dcompact-eh2.s31 # Region 1 -- Action Chain
34 .sleb128 (0<<2)|0x1 # Action/Chain Pair
H A Dcompact-eh3.s33 # Region 1 -- Action Chain
36 .sleb128 (0<<2)|0x1 # Action/Chain Pair
/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DZOS.cpp27 Action::OffloadKind DeviceOffloadKind) const {
H A DZOS.h33 Action::OffloadKind DeviceOffloadingKind) const override;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DAnalysis.cpp99 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action, argument
101 raw_ostream *DebugOS = Action != LLVMReturnStatusAction ? &errs() : nullptr;
111 if (Action == LLVMAbortProcessAction && Result)
120 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) { argument
122 *unwrap<Function>(Fn), Action != LLVMReturnStatusAction ? &errs()
125 if (Action == LLVMAbortProcessAction && Result)
/netbsd-current/external/apache2/llvm/dist/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));
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h148 /// Calls 'Action' with the BoundNodes on every match.
152 /// Does not take ownership of 'Action'.
155 MatchCallback *Action);
157 MatchCallback *Action);
159 MatchCallback *Action);
161 MatchCallback *Action);
163 MatchCallback *Action);
165 MatchCallback *Action);
167 MatchCallback *Action);
169 MatchCallback *Action);
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp134 ActionEntry Action = { ValueForTypeID, NextAction, PrevAction }; local
135 Actions.push_back(Action);
317 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) {
496 // The Action table follows the call-site table. So we emit the
527 CallSiteTableSize += 12 + getULEB128Size(S.Action);
536 for (const ActionEntry &Action : Actions) {
538 ActionTableSize += getSLEB128Size(Action.ValueForTypeID) +
539 getSLEB128Size(Action.NextAction);
550 + ActionTableSize; // Action tabl
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h99 raw_ostream &operator<<(raw_ostream &OS, LegalizeActions::LegalizeAction Action);
152 LegalizeAction Action; member in struct:llvm::LegalizeActionStep
158 LegalizeActionStep(LegalizeAction Action, unsigned TypeIdx, argument
160 : Action(Action), TypeIdx(TypeIdx), NewType(NewType) {}
163 return std::tie(Action, TypeIdx, NewType) ==
164 std::tie(RHS.Action, RHS.TypeIdx, RHS.NewType);
340 LegalizeAction Action;
344 LegalizeRule(LegalityPredicate Predicate, LegalizeAction Action,
346 : Predicate(Predicate), Action(Actio
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.cpp167 const SimplifyAction Action = [II]() -> SimplifyAction { local
314 // If Action.FtzRequirementTy is not satisfied by the module's ftz state, we
318 if (Action.FtzRequirement != FTZ_Any) {
325 if (FtzEnabled != (Action.FtzRequirement == FTZ_MustBeOn))
330 if (Action.IID) {
336 Intrinsic::getDeclaration(II->getModule(), *Action.IID, Tys), Args);
340 if (Action.BinaryOp)
341 return BinaryOperator::Create(*Action.BinaryOp, II->getArgOperand(0),
345 if (Action.CastOp)
346 return CastInst::Create(*Action
[all...]
/netbsd-current/sys/external/bsd/acpica/dist/utilities/
H A Dutdelete.c63 UINT32 Action);
412 * Action - What to do (REF_INCREMENT or REF_DECREMENT)
423 UINT32 Action)
448 switch (Action)
509 Action));
532 * Action - Either REF_INCREMENT or REF_DECREMENT
550 UINT16 Action)
594 AcpiUtUpdateRefCount (PrevObject, Action);
627 AcpiUtUpdateRefCount (NextObject, Action);
636 NextObject, Action,
421 AcpiUtUpdateRefCount( ACPI_OPERAND_OBJECT *Object, UINT32 Action) argument
548 AcpiUtUpdateObjectReference( ACPI_OPERAND_OBJECT *Object, UINT16 Action) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-actions.h72 // 2. a factory function that creates an Action object from a
77 // management as Action objects can now be copied like plain values.
340 // An Action<F> is a copyable and IMMUTABLE (except by assignment)
342 // of type F is called. The implementation of Action<T> is just a
343 // std::shared_ptr to const ActionInterface<T>. Don't inherit from Action!
345 // concrete action (including its current state), and an Action<F>
348 class Action { class in namespace:testing
349 // Adapter class to allow constructing Action from a legacy ActionInterface.
366 // Constructs a null Action. Needed for storing Action object
368 Action() {} function in class:testing::Action
376 Action(G&& fun) : fun_(::std::forward<G>(fun)) {} // NOLINT function in class:testing::Action
379 explicit Action(ActionInterface<F>* impl) function in class:testing::Action
386 explicit Action(const Action<Func>& action) : fun_(action.fun_) {} function in class:testing::Action
[all...]

Completed in 423 milliseconds

1234567