Home
last modified time | relevance | path

Searched refs:GenericHandler (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/mlir/unittests/Support/
H A DDebugActionTest.cpp27 TEST(DebugActionTest, GenericHandler) { in TEST() argument
32 struct GenericHandler : public DebugActionManager::GenericHandler { in TEST() struct
44 manager.registerActionHandler<GenericHandler>(); in TEST()
/llvm-project-15.0.7/mlir/include/mlir/Support/
H A DDebugAction.h72 class GenericHandler : public HandlerBase {
74 GenericHandler() : HandlerBase(TypeID::get<GenericHandler>()) {} in GenericHandler() function
86 return handler->getHandlerID() == TypeID::get<GenericHandler>(); in classof()
154 } else if (auto *genericHandler = dyn_cast<GenericHandler>(&*it)) { in dispatchToHandler()
H A DDebugCounter.h28 class DebugCounter : public DebugActionManager::GenericHandler {
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A D2007-01-06-PtrMethodInit.cpp52 GenericHandler; typedef
56 GenericHandler method;
68 reinterpret_cast < GenericHandler > (&nsIDOMMouseListener::MouseDown),
/llvm-project-15.0.7/mlir/docs/
H A DDebugActions.md155 `DebugActionManager::GenericHandler`. An example is shown below:
158 struct MyPatternHandler : public DebugActionManager::GenericHandler {