Home
last modified time | relevance | path

Searched refs:ActionType (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Support/
H A DDebugAction.h109 template <typename ActionType, typename... Args>
120 FailureOr<bool> result = dispatchToHandler<ActionType, bool>( in shouldExecute()
139 template <typename ActionType, typename ResultT, typename HandlerCallbackT,
143 static_assert(ActionType::template canHandleWith<Args...>(), in dispatchToHandler()
152 if (auto *handler = dyn_cast<typename ActionType::Handler>(&*it)) { in dispatchToHandler()
155 result = handlerCallback(genericHandler, ActionType::getTag(), in dispatchToHandler()
156 ActionType::getDescription()); in dispatchToHandler()
/llvm-project-15.0.7/clang/examples/PluginsOrder/
H A DPluginsOrder.cpp35 PluginASTAction::ActionType getActionType() override { in getActionType()
59 PluginASTAction::ActionType getActionType() override { in getActionType()
83 PluginASTAction::ActionType getActionType() override { in getActionType()
107 PluginASTAction::ActionType getActionType() override { in getActionType()
/llvm-project-15.0.7/clang/test/Modules/
H A Dpr27890.cpp6 enum ActionType {}; enum
7 opt<ActionType> a(values(""));
/llvm-project-15.0.7/bolt/include/bolt/Passes/
H A DShrinkWrapping.h151 enum ActionType : uint8_t { enum
159 WorklistItem(ActionType Action) : Action(Action) {} in WorklistItem()
160 WorklistItem(ActionType Action, int OffsetUpdate) in WorklistItem()
324 enum ActionType : uint8_t { enum
333 WorklistItem(ActionType Action, unsigned AffectedReg) in WorklistItem()
335 WorklistItem(ActionType Action, unsigned AffectedReg, int Adjustment) in WorklistItem()
338 WorklistItem(ActionType Action, const FrameIndexEntry &FIE, in WorklistItem()
/llvm-project-15.0.7/clang/tools/c-index-test/
H A Dcore_main.cpp39 enum class ActionType { enum
48 static cl::opt<ActionType>
49 Action(cl::desc("Action:"), cl::init(ActionType::None),
51 clEnumValN(ActionType::PrintSourceSymbols,
354 if (options::Action == ActionType::None) { in indextest_core_main()
359 if (options::Action == ActionType::PrintSourceSymbols) { in indextest_core_main()
/llvm-project-15.0.7/lldb/utils/TableGen/
H A DLLDBTableGen.cpp24 enum ActionType { enum
32 static cl::opt<ActionType> Action(
/llvm-project-15.0.7/bolt/lib/Core/
H A DExceptions.cpp274 int64_t ActionType; in parseLSDA() local
278 ActionType = Data.getSLEB128(&ActionPtr); in parseLSDA()
282 outs() << Sep << "(" << ActionType << ", " << ActionNext << ") "; in parseLSDA()
283 if (ActionType == 0) { in parseLSDA()
286 } else if (ActionType > 0) { in parseLSDA()
289 std::max(MaxTypeIndex, static_cast<unsigned>(ActionType)); in parseLSDA()
292 printType(ActionType, outs()); in parseLSDA()
302 uint64_t TypeIndexTablePtr = TypeIndexTableStart - ActionType - 1; in parseLSDA()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DFrontendAction.cpp190 PluginASTAction::ActionType ActionType = P->getActionType(); in CreateWrappedASTConsumer() local
191 if (ActionType == PluginASTAction::CmdlineAfterMainAction || in CreateWrappedASTConsumer()
192 ActionType == PluginASTAction::CmdlineBeforeMainAction) { in CreateWrappedASTConsumer()
199 if (ActionType == PluginASTAction::CmdlineBeforeMainAction) in CreateWrappedASTConsumer()
200 ActionType = PluginASTAction::AddBeforeMainAction; in CreateWrappedASTConsumer()
202 ActionType = PluginASTAction::AddAfterMainAction; in CreateWrappedASTConsumer()
205 if ((ActionType == PluginASTAction::AddBeforeMainAction || in CreateWrappedASTConsumer()
206 ActionType == PluginASTAction::AddAfterMainAction) && in CreateWrappedASTConsumer()
211 if (ActionType == PluginASTAction::AddBeforeMainAction) { in CreateWrappedASTConsumer()
/llvm-project-15.0.7/clang/include/clang/Frontend/
H A DFrontendAction.h272 enum ActionType { enum
284 virtual ActionType getActionType() { return CmdlineAfterMainAction; } in getActionType()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DTableGen.cpp22 enum ActionType { enum
73 cl::opt<ActionType> Action(
/llvm-project-15.0.7/clang/examples/AnnotateFunctions/
H A DAnnotateFunctions.cpp53 PluginASTAction::ActionType getActionType() override { in getActionType()
/llvm-project-15.0.7/clang/utils/TableGen/
H A DTableGen.cpp25 enum ActionType { enum
100 cl::opt<ActionType> Action(
/llvm-project-15.0.7/clang/examples/CallSuperAttribute/
H A DCallSuperAttrInfo.cpp153 PluginASTAction::ActionType getActionType() override { in getActionType()
/llvm-project-15.0.7/mlir/docs/
H A DDebugActions.md87 template <typename ActionType, typename... Params>
131 base class defined at `ActionType::Handler` where `ActionType` is the specific
/llvm-project-15.0.7/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp214 enum ActionType { enum
221 static cl::opt<ActionType> Action(
/llvm-project-15.0.7/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp53 enum ActionType { enum
61 static cl::opt<ActionType> Action(
/llvm-project-15.0.7/llvm/tools/sancov/
H A Dsancov.cpp62 enum ActionType { enum
73 cl::opt<ActionType> Action(
/llvm-project-15.0.7/clang/docs/
H A DClangPlugins.rst200 PluginASTAction::ActionType getActionType() override {
/llvm-project-15.0.7/llvm/docs/TableGen/
H A DBackGuide.rst457 a. Add the name to the enumerated type ``ActionType``.
459 #. Add a keyword to the ``ActionType`` command option using the
/llvm-project-15.0.7/clang/lib/Parse/
H A DParsePragma.cpp1452 enum ActionType { Push, Pop, Attribute }; enum
1454 ActionType Action;
/llvm-project-15.0.7/bolt/lib/Passes/
H A DShrinkWrapping.cpp641 WorklistItem::ActionType AdjustmentType = WorklistItem::None; in performChanges()