Home
last modified time | relevance | path

Searched refs:exception_type (Results 1 – 14 of 14) sorted by relevance

/third_party/flutter/skia/tools/skpbench/
D_hardware_android.py60 def __exit__(self, exception_type, exception_value, traceback): argument
61 Hardware.__exit__(self, exception_type, exception_value, traceback)
D_hardware.py29 def __exit__(self, exception_type, exception_value, traceback): argument
Dskpbench.py198 def __exit__(self, exception_type, exception_value, traceback): argument
/third_party/skia/tools/skpbench/
D_hardware_android.py71 def __exit__(self, exception_type, exception_value, traceback): argument
72 Hardware.__exit__(self, exception_type, exception_value, traceback)
D_hardware.py29 def __exit__(self, exception_type, exception_value, traceback): argument
Dskpbench.py220 def __exit__(self, exception_type, exception_value, traceback): argument
/third_party/flutter/skia/infra/bots/
Dutils.py172 exception_type = excinfo[0]
180 if (function is os.listdir) and issubclass(exception_type, OSError):
/third_party/skia/infra/bots/
Dutils.py175 exception_type = excinfo[0]
183 if (function is os.listdir) and issubclass(exception_type, OSError):
/third_party/python/Modules/
Doverlapped.c123 PyObject *exception_type; in SetFromWindowsErr() local
129 exception_type = PyExc_ConnectionRefusedError; in SetFromWindowsErr()
132 exception_type = PyExc_ConnectionAbortedError; in SetFromWindowsErr()
135 exception_type = PyExc_OSError; in SetFromWindowsErr()
137 return PyErr_SetExcFromWindowsErr(exception_type, err); in SetFromWindowsErr()
/third_party/python/Python/
Derrors.c89 _PyErr_CreateException(PyObject *exception_type, PyObject *value) in _PyErr_CreateException() argument
94 exc = _PyObject_CallNoArg(exception_type); in _PyErr_CreateException()
97 exc = PyObject_Call(exception_type, value, NULL); in _PyErr_CreateException()
100 exc = PyObject_CallOneArg(exception_type, value); in _PyErr_CreateException()
107 exception_type, Py_TYPE(exc)->tp_name); in _PyErr_CreateException()
/third_party/python/Lib/test/
Dtest_fileinput.py172 def __init__(self, exception_type): argument
173 self.exception_type = exception_type
177 raise self.exception_type()
Dtest_fstring.py29 def assertAllRaise(self, exception_type, regex, error_strings): argument
32 with self.assertRaisesRegex(exception_type, regex):
/third_party/googletest/docs/reference/
Dassertions.md313 `EXPECT_THROW(`*`statement`*`,`*`exception_type`*`)` \
314 `ASSERT_THROW(`*`statement`*`,`*`exception_type`*`)`
316 Verifies that *`statement`* throws an exception of type *`exception_type`*.
/third_party/json/test/thirdparty/doctest/
Ddoctest.h1385 const char* exception_type = "", const char* exception_string = "");
4460 const char* exception_type, const char* exception_string) {
4469 m_exception_type = exception_type;