Home
last modified time | relevance | path

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

/external/llvm-project/llvm/tools/llvm-xray/
Dxray-registry.cpp20 using HandlerType = std::function<Error()>; typedef
22 ManagedStatic<std::unordered_map<cl::SubCommand *, HandlerType>> Commands;
25 HandlerType Command) { in CommandRegistration()
32 HandlerType dispatch(cl::SubCommand *SC) { in dispatch()
/external/llvm-project/clang/lib/Sema/
DSemaExceptionSpec.cpp671 bool Sema::handlerCanCatch(QualType HandlerType, QualType ExceptionType) { in handlerCanCatch() argument
677 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>(); in handlerCanCatch()
679 HandlerType = RefTy->getPointeeType(); in handlerCanCatch()
682 if (Context.hasSameUnqualifiedType(ExceptionType, HandlerType)) in handlerCanCatch()
686 if (HandlerType->isPointerType() || HandlerType->isMemberPointerType()) { in handlerCanCatch()
687 if (RefTy && (!HandlerType.isConstQualified() || in handlerCanCatch()
688 HandlerType.isVolatileQualified())) in handlerCanCatch()
705 if (IsQualificationConversion(ExceptionType, HandlerType, false, in handlerCanCatch()
707 IsFunctionConversion(ExceptionType, HandlerType, Result)) in handlerCanCatch()
711 if (!ExceptionType->isPointerType() || !HandlerType->isPointerType()) in handlerCanCatch()
[all …]
/external/golang-protobuf/protoc-gen-go/testdata/grpc/
Dgrpc_empty.pb.go77 HandlerType: (*EmptyServiceServer)(nil),
Dgrpc.pb.go442 HandlerType: (*TestServer)(nil),
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DWinEHFuncInfo.h87 ClrHandlerType HandlerType; member
/external/llvm-project/llvm/include/llvm/CodeGen/
DWinEHFuncInfo.h87 ClrHandlerType HandlerType; member
/external/llvm/include/llvm/CodeGen/
DWinEHFuncInfo.h90 ClrHandlerType HandlerType; member
/external/llvm/lib/CodeGen/
DWinEHPrepare.cpp455 int TryParentState, ClrHandlerType HandlerType, in addClrEHHandler() argument
461 Entry.HandlerType = HandlerType; in addClrEHHandler()
525 ClrHandlerType HandlerType = in calculateClrEHStateNumbers() local
529 HandlerType, 0, Pad->getParent()); in calculateClrEHStateNumbers()
/external/llvm-project/llvm/lib/CodeGen/
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()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DWinEHPrepare.cpp466 int TryParentState, ClrHandlerType HandlerType, in addClrEHHandler() argument
472 Entry.HandlerType = HandlerType; in addClrEHHandler()
536 ClrHandlerType HandlerType = in calculateClrEHStateNumbers() local
540 HandlerType, 0, Pad->getParent()); in calculateClrEHStateNumbers()
/external/golang-protobuf/protoc-gen-go/testdata/deprecated/
Ddeprecated.pb.go280 HandlerType: (*DeprecatedServiceServer)(nil),
/external/google-breakpad/src/client/windows/handler/
Dexception_handler.h151 enum HandlerType { enum
/external/libbrillo/brillo/dbus/
Ddbus_object.h439 template<typename HandlerType>
446 new HandlerType(callback)); in Add()
/external/google-breakpad/docs/
Dwindows_client_integration.md38 * Which exceptions to handle - see `HandlerType` enumeration in
/external/flatbuffers/tests/MyGame/Example/
DMonsterStorage_grpc.go225 HandlerType: (*MonsterStorageServer)(nil),
/external/llvm/lib/CodeGen/AsmPrinter/
DWinException.cpp1239 switch (Entry.HandlerType) { in emitCLRExceptionTable()
1270 assert(Entry.HandlerType != ClrHandlerType::Filter && "NYI: filters"); in emitCLRExceptionTable()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DWinException.cpp1291 switch (Entry.HandlerType) { in emitCLRExceptionTable()
1322 assert(Entry.HandlerType != ClrHandlerType::Filter && "NYI: filters"); in emitCLRExceptionTable()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DWinException.cpp1282 switch (Entry.HandlerType) { in emitCLRExceptionTable()
1313 assert(Entry.HandlerType != ClrHandlerType::Filter && "NYI: filters"); in emitCLRExceptionTable()
/external/llvm-project/clang/include/clang/Sema/
DSema.h1888 bool handlerCanCatch(QualType HandlerType, QualType ExceptionType);