/external/libunwind/src/unwind/ |
D | unwind-internal.h | 65 uint64_t exception_class = exception_object->exception_class; in _Unwind_Phase2() local 100 reason = (*stop) (_U_VERSION, actions, exception_class, in _Unwind_Phase2() 133 reason = (*personality) (_U_VERSION, actions, exception_class, in _Unwind_Phase2()
|
D | RaiseException.c | 32 uint64_t exception_class = exception_object->exception_class; in _Unwind_RaiseException() local 73 exception_class, exception_object, in _Unwind_RaiseException()
|
/external/libunwind_llvm/src/ |
D | Unwind-seh.cpp | 56 if (exc->exception_class != kSEHExceptionClass) in seh_exc_cleanup() 111 exc->exception_class = kSEHExceptionClass; in _GCC_specific_handler() 136 (void *)pers, action, exc->exception_class, in _GCC_specific_handler() 138 urc = pers(1, action, exc->exception_class, exc, ctx); in _GCC_specific_handler() 277 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced() 297 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced() 333 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
|
D | Unwind-sjlj.c | 134 1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1() 195 (*c->personality)(1, action, exception_object->exception_class, in unwind_phase2() 255 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced() 274 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced() 310 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
|
D | UnwindLevel1.c | 95 (*p)(1, _UA_SEARCH_PHASE, exception_object->exception_class, in unwind_phase1() 192 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2() 276 (*stop)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced() 296 (*p)(1, action, exception_object->exception_class, exception_object, in unwind_phase2_forced() 332 (*stop)(1, lastAction, exception_object->exception_class, exception_object, in unwind_phase2_forced()
|
D | UnwindLevel1-gcc-ext.c | 121 ex.exception_class = 0x434C4E47554E5700; // CLNGUNW\0 in _Unwind_Backtrace()
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
D | test_base.py | 194 exception_class, argument 205 repr(exception_class)) 206 except exception_class as e: 211 with self.assertRaisesRegexp(exception_class,
|
/external/libunwind_llvm/include/ |
D | unwind.h | 75 uint64_t exception_class; member 124 uint64_t exception_class; member
|
/external/libunwind/include/ |
D | unwind.h | 79 uint64_t exception_class; member
|
/external/libcxxabi/src/ |
D | cxa_exception.cpp | 83 ::memcpy(&unwind_exception->exception_class, &newValue, sizeof(newValue)); in __setExceptionClass() 102 ::memcpy(&exClass, &unwind_exception->exception_class, sizeof(exClass)); in __getExceptionClass()
|
/external/clang/lib/Headers/ |
D | unwind.h | 115 _Unwind_Exception_Class exception_class; member
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | unwindraise.ll | 42 …%exception_class = getelementptr inbounds %struct._Unwind_Exception, %struct._Unwind_Exception* %e… 58 %5 = load i64, i64* %exception_class, align 8 147 %22 = load i64, i64* %exception_class, align 8
|
/external/llvm/test/CodeGen/X86/ |
D | unwindraise.ll | 42 …%exception_class = getelementptr inbounds %struct._Unwind_Exception, %struct._Unwind_Exception* %e… 58 %5 = load i64, i64* %exception_class, align 8 147 %22 = load i64, i64* %exception_class, align 8
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tfe_src.cc | 699 PyObject* exception_class GUARDED_BY(exception_class_mutex) = nullptr; 748 if (exception_class != nullptr) { in TFE_Py_RegisterExceptionClass() 749 Py_DECREF(exception_class); in TFE_Py_RegisterExceptionClass() 752 exception_class = nullptr; in TFE_Py_RegisterExceptionClass() 760 exception_class = e; in TFE_Py_RegisterExceptionClass() 834 if (exception_class != nullptr) { in MaybeRaiseExceptionFromTFStatus() 844 PyErr_SetObject(exception_class, val.get()); in MaybeRaiseExceptionFromTFStatus() 861 if (exception_class != nullptr) { in MaybeRaiseExceptionFromStatus() 863 PyErr_SetObject(exception_class, val.get()); in MaybeRaiseExceptionFromStatus()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 117 uint64_t exception_class; member 334 (expToDelete->exception_class == ourBaseExceptionClass)) { in deleteOurException() 365 (ret->unwindException).exception_class = ourBaseExceptionClass; in createOurException()
|
/external/grpc-grpc/src/python/grpcio/grpc/beta/ |
D | _client_adaptations.py | 62 exception_class = face.AbortionError if pair is None else pair[1] 63 return exception_class(rpc_error_call.initial_metadata(),
|
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 120 uint64_t exception_class; member 339 (expToDelete->exception_class == ourBaseExceptionClass)) { in deleteOurException() 370 (ret->unwindException).exception_class = ourBaseExceptionClass; in createOurException()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 292 (expToDelete->exception_class == ourBaseExceptionClass)) { in deleteOurException() 323 (ret->unwindException).exception_class = ourBaseExceptionClass; in createOurException()
|
/external/flatbuffers/tests/ |
D | py_test.py | 46 def assertRaises(test_case, fn, exception_class): argument 55 test_case.assertTrue(isinstance(exc, exception_class))
|
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 1245 exception_class = configparser.InterpolationMissingOptionError 1246 with self.assertRaises(exception_class) as cm:
|