Home
last modified time | relevance | path

Searched refs:PyErr_GivenExceptionMatches (Results 1 – 25 of 25) sorted by relevance

/external/python/cpython2/Python/
Derrors.c85 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches() function
96 if (PyErr_GivenExceptionMatches( in PyErr_GivenExceptionMatches()
137 return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc); in PyErr_ExceptionMatches()
Dmactoolboxglue.c141 if (exc && PyErr_GivenExceptionMatches(exc, in PyMac_GetFullPathname()
Dceval.c4894 res = PyErr_GivenExceptionMatches(v, w); in cmp_outcome()
/external/python/cpython3/Python/
Derrors.c184 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches() function
195 if (PyErr_GivenExceptionMatches( in PyErr_GivenExceptionMatches()
218 return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc); in PyErr_ExceptionMatches()
321 if (PyErr_GivenExceptionMatches(*exc, PyExc_MemoryError)) { in PyErr_NormalizeException()
Dceval.c4741 res = PyErr_GivenExceptionMatches(v, w); in cmp_outcome()
/external/python/cpython3/Modules/
Datexitmodule.c98 if (!PyErr_GivenExceptionMatches(exc_type, PyExc_SystemExit)) { in atexit_callfuncs()
D_asynciomodule.c2627 if (!PyErr_GivenExceptionMatches(et, PyExc_Exception)) { in task_step_impl()
2926 if (!PyErr_GivenExceptionMatches(et, PyExc_Exception)) { in task_wakeup()
/external/python/cpython2/PC/os2vacpp/
Dpython.def140 PyErr_GivenExceptionMatches
/external/python/cpython2/Include/
Dpyerrors.h91 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
/external/python/cpython2/Modules/_io/
D_iomodule.c565 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
Dbufferedio.c610 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
/external/python/cpython3/Modules/_io/
D_iomodule.c515 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
Dbufferedio.c667 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
/external/python/cpython3/Include/
Dpyerrors.h115 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
/external/python/cpython3/PC/
Dpython3.def127 PyErr_GivenExceptionMatches=python37.PyErr_GivenExceptionMatches
/external/python/cpython2/Doc/data/
Drefcounts.dat275 PyErr_GivenExceptionMatches:int:::
276 PyErr_GivenExceptionMatches:PyObject*:given:0:
277 PyErr_GivenExceptionMatches:PyObject*:exc:0:
/external/python/cpython2/PC/os2emx/
Dpython27.def894 "PyErr_GivenExceptionMatches"
/external/python/cpython2/Doc/c-api/
Dexceptions.rst78 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This
83 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
/external/python/cpython3/Doc/data/
Drefcounts.dat581 PyErr_GivenExceptionMatches:int:::
582 PyErr_GivenExceptionMatches:PyObject*:given:0:
583 PyErr_GivenExceptionMatches:PyObject*:exc:0:
/external/python/cpython3/Doc/c-api/
Dexceptions.rst382 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This
387 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
/external/python/cpython3/Objects/
Dgenobject.c406 if (PyErr_GivenExceptionMatches(typ, PyExc_GeneratorExit) && in _gen_throw()
Dabstract.c1311 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsSsize_t()
/external/python/cpython2/Objects/
Dabstract.c1535 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError))
/external/python/cpython2/Misc/
DHISTORY12776 - int PyErr_GivenExceptionMatches(obj1, obj2)
12783 Higher level wrapper around PyErr_GivenExceptionMatches() which uses
/external/python/cpython3/Misc/
DHISTORY30155 - int PyErr_GivenExceptionMatches(obj1, obj2)
30162 Higher level wrapper around PyErr_GivenExceptionMatches() which uses