| /llvm-project-15.0.7/mlir/include/mlir/Support/ |
| H A D | DebugAction.h | 109 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 D | PluginsOrder.cpp | 35 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 D | pr27890.cpp | 6 enum ActionType {}; enum 7 opt<ActionType> a(values(""));
|
| /llvm-project-15.0.7/bolt/include/bolt/Passes/ |
| H A D | ShrinkWrapping.h | 151 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 D | core_main.cpp | 39 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 D | LLDBTableGen.cpp | 24 enum ActionType { enum 32 static cl::opt<ActionType> Action(
|
| /llvm-project-15.0.7/bolt/lib/Core/ |
| H A D | Exceptions.cpp | 274 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 D | FrontendAction.cpp | 190 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 D | FrontendAction.h | 272 enum ActionType { enum 284 virtual ActionType getActionType() { return CmdlineAfterMainAction; } in getActionType()
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | TableGen.cpp | 22 enum ActionType { enum 73 cl::opt<ActionType> Action(
|
| /llvm-project-15.0.7/clang/examples/AnnotateFunctions/ |
| H A D | AnnotateFunctions.cpp | 53 PluginASTAction::ActionType getActionType() override { in getActionType()
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | TableGen.cpp | 25 enum ActionType { enum 100 cl::opt<ActionType> Action(
|
| /llvm-project-15.0.7/clang/examples/CallSuperAttribute/ |
| H A D | CallSuperAttrInfo.cpp | 153 PluginASTAction::ActionType getActionType() override { in getActionType()
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | DebugActions.md | 87 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 D | llvm-mc.cpp | 214 enum ActionType { enum 221 static cl::opt<ActionType> Action(
|
| /llvm-project-15.0.7/llvm/tools/llvm-rtdyld/ |
| H A D | llvm-rtdyld.cpp | 53 enum ActionType { enum 61 static cl::opt<ActionType> Action(
|
| /llvm-project-15.0.7/llvm/tools/sancov/ |
| H A D | sancov.cpp | 62 enum ActionType { enum 73 cl::opt<ActionType> Action(
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | ClangPlugins.rst | 200 PluginASTAction::ActionType getActionType() override {
|
| /llvm-project-15.0.7/llvm/docs/TableGen/ |
| H A D | BackGuide.rst | 457 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 D | ParsePragma.cpp | 1452 enum ActionType { Push, Pop, Attribute }; enum 1454 ActionType Action;
|
| /llvm-project-15.0.7/bolt/lib/Passes/ |
| H A D | ShrinkWrapping.cpp | 641 WorklistItem::ActionType AdjustmentType = WorklistItem::None; in performChanges()
|