Home
last modified time | relevance | path

Searched refs:HandlerType (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-xray/
H A Dxray-registry.cpp19 using HandlerType = std::function<Error()>; typedef
21 static std::unordered_map<cl::SubCommand *, HandlerType> &getCommands() { in getCommands()
22 static std::unordered_map<cl::SubCommand *, HandlerType> Commands; in getCommands()
27 HandlerType Command) { in CommandRegistration()
34 HandlerType dispatch(cl::SubCommand *SC) { in dispatch()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExceptionSpec.cpp679 bool Sema::handlerCanCatch(QualType HandlerType, QualType ExceptionType) { in handlerCanCatch() argument
685 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>(); in handlerCanCatch()
687 HandlerType = RefTy->getPointeeType(); in handlerCanCatch()
690 if (Context.hasSameUnqualifiedType(ExceptionType, HandlerType)) in handlerCanCatch()
694 if (HandlerType->isPointerType() || HandlerType->isMemberPointerType()) { in handlerCanCatch()
695 if (RefTy && (!HandlerType.isConstQualified() || in handlerCanCatch()
696 HandlerType.isVolatileQualified())) in handlerCanCatch()
713 if (IsQualificationConversion(ExceptionType, HandlerType, false, in handlerCanCatch()
715 IsFunctionConversion(ExceptionType, HandlerType, Result)) in handlerCanCatch()
719 if (!ExceptionType->isPointerType() || !HandlerType->isPointerType()) in handlerCanCatch()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h276 template <class HandlerType, class... Args>
278 addHighPriorityHandler(std::make_unique<HandlerType>( in addHighPriorityHandler()
285 template <class HandlerType, class... Args>
287 addLowPriorityHandler(std::make_unique<HandlerType>( in addLowPriorityHandler()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DWinEHFuncInfo.h87 ClrHandlerType HandlerType; member
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp488 int TryParentState, ClrHandlerType HandlerType, in addClrEHHandler() argument
494 Entry.HandlerType = HandlerType; in addClrEHHandler()
558 ClrHandlerType HandlerType = in calculateClrEHStateNumbers() local
562 HandlerType, 0, Pad->getParent()); in calculateClrEHStateNumbers()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp1307 switch (Entry.HandlerType) { in emitCLRExceptionTable()
1338 assert(Entry.HandlerType != ClrHandlerType::Filter && "NYI: filters"); in emitCLRExceptionTable()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h2144 bool handlerCanCatch(QualType HandlerType, QualType ExceptionType);