/external/python/cpython2/Python/ |
D | errors.c | 85 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()
|
D | mactoolboxglue.c | 141 if (exc && PyErr_GivenExceptionMatches(exc, in PyMac_GetFullPathname()
|
/external/python/cpython3/Python/ |
D | errors.c | 259 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches() function 270 if (PyErr_GivenExceptionMatches( in PyErr_GivenExceptionMatches() 293 return PyErr_GivenExceptionMatches(_PyErr_Occurred(tstate), exc); in _PyErr_ExceptionMatches() 409 if (PyErr_GivenExceptionMatches(*exc, PyExc_MemoryError)) { in _PyErr_NormalizeException()
|
D | ceval.c | 2703 if (PyErr_GivenExceptionMatches(exc, PyExc_StopAsyncIteration)) { in _PyEval_EvalFrameDefault() 3675 int res = PyErr_GivenExceptionMatches(left, right); in _PyEval_EvalFrameDefault() 6263 if (PyErr_GivenExceptionMatches(value, PyExc_NameError)) { in format_exc_check_arg()
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 140 PyErr_GivenExceptionMatches
|
/external/python/cpython2/Include/ |
D | pyerrors.h | 91 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
|
/external/python/cpython3/Include/ |
D | pyerrors.h | 34 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
|
/external/python/cpython2/Modules/_io/ |
D | _iomodule.c | 565 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
|
D | bufferedio.c | 610 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.c | 586 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
|
D | bufferedio.c | 657 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 275 PyErr_GivenExceptionMatches:int::: 276 PyErr_GivenExceptionMatches:PyObject*:given:0: 277 PyErr_GivenExceptionMatches:PyObject*:exc:0:
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 894 "PyErr_GivenExceptionMatches"
|
/external/python/cpython2/Doc/c-api/ |
D | exceptions.rst | 78 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This 83 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
|
/external/python/cpython3/PC/ |
D | python3dll.c | 196 EXPORT_FUNC(PyErr_GivenExceptionMatches)
|
/external/python/cpython3/Doc/data/ |
D | stable_abi.dat | 132 function,PyErr_GivenExceptionMatches,3.2,
|
D | refcounts.dat | 609 PyErr_GivenExceptionMatches:int::: 610 PyErr_GivenExceptionMatches:PyObject*:given:0: 611 PyErr_GivenExceptionMatches:PyObject*:exc:0:
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 2712 if (PyErr_GivenExceptionMatches(et, PyExc_KeyboardInterrupt) || in task_step_impl() 2713 PyErr_GivenExceptionMatches(et, PyExc_SystemExit)) in task_step_impl()
|
/external/python/cpython3/Doc/c-api/ |
D | exceptions.rst | 390 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This 395 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
|
/external/python/cpython3/Objects/ |
D | genobject.c | 419 if (PyErr_GivenExceptionMatches(typ, PyExc_GeneratorExit) && in _gen_throw()
|
D | object.c | 901 if (!PyErr_GivenExceptionMatches(value, PyExc_AttributeError)) { in set_attribute_error_context()
|
D | abstract.c | 1498 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { in PyNumber_AsSsize_t()
|
/external/python/cpython3/Misc/ |
D | stable_abi.txt | 528 function PyErr_GivenExceptionMatches
|
/external/python/pybind11/include/pybind11/ |
D | pytypes.h | 363 bool matches(handle exc) const { return PyErr_GivenExceptionMatches(m_type.ptr(), exc.ptr()); } in PYBIND11_NAMESPACE_END()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1535 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError))
|