Home
last modified time | relevance | path

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

12

/external/python/cpython3/Objects/
Dgenobject.c173 PyErr_SetNone(PyExc_StopIteration); in gen_send_ex()
235 PyErr_SetNone(PyExc_StopIteration); in gen_send_ex()
245 else if (!result && PyErr_ExceptionMatches(PyExc_StopIteration)) { in gen_send_ex()
377 if (PyErr_ExceptionMatches(PyExc_StopIteration) in gen_close()
564 PyErr_SetObject(PyExc_StopIteration, value); in _PyGen_SetStopIterationValue()
576 e = PyObject_CallOneArg(PyExc_StopIteration, value); in _PyGen_SetStopIterationValue()
580 PyErr_SetObject(PyExc_StopIteration, e); in _PyGen_SetStopIterationValue()
600 if (PyErr_ExceptionMatches(PyExc_StopIteration)) { in _PyGen_FetchStopIterationValue()
608 } else if (et == PyExc_StopIteration && !PyTuple_Check(ev)) { in _PyGen_FetchStopIterationValue()
621 if (!PyObject_TypeCheck(ev, (PyTypeObject *)PyExc_StopIteration)) { in _PyGen_FetchStopIterationValue()
[all …]
Diterobject.c72 PyErr_ExceptionMatches(PyExc_StopIteration)) in iter_iternext()
235 else if (PyErr_ExceptionMatches(PyExc_StopIteration)) { in calliter_iternext()
Denumobject.c345 PyErr_ExceptionMatches(PyExc_StopIteration)) in reversed_next()
Dbytearrayobject.c874 if (!PyErr_ExceptionMatches(PyExc_StopIteration)) in bytearray_init()
/external/python/cpython2/Objects/
Dgenobject.c59 PyErr_SetNone(PyExc_StopIteration); in gen_send_ex()
103 PyErr_SetNone(PyExc_StopIteration); in gen_send_ex()
140 if (PyErr_ExceptionMatches(PyExc_StopIteration) in gen_close()
Diterobject.c69 PyErr_ExceptionMatches(PyExc_StopIteration)) in iter_iternext()
196 else if (PyErr_ExceptionMatches(PyExc_StopIteration)) { in calliter_iternext()
Denumobject.c311 PyErr_ExceptionMatches(PyExc_StopIteration)) in reversed_next()
/external/python/cpython2/Modules/
D_json.c1317 PyErr_SetNone(PyExc_StopIteration); in _match_number_str()
1333 PyErr_SetNone(PyExc_StopIteration); in _match_number_str()
1419 PyErr_SetNone(PyExc_StopIteration); in _match_number_unicode()
1435 PyErr_SetNone(PyExc_StopIteration); in _match_number_unicode()
1507 PyErr_SetNone(PyExc_StopIteration); in scan_once_str()
1600 PyErr_SetNone(PyExc_StopIteration); in scan_once_unicode()
DcStringIO.c342 PyErr_SetNone(PyExc_StopIteration); in IO_iternext()
Ditertoolsmodule.c757 if (PyErr_ExceptionMatches(PyExc_StopIteration)) in cycle_next()
1718 if (PyErr_ExceptionMatches(PyExc_StopIteration)) in chain_next()
/external/python/cpython3/Include/
Dpyerrors.h77 PyAPI_DATA(PyObject *) PyExc_StopIteration;
/external/python/cpython2/Include/
Dpyerrors.h121 PyAPI_DATA(PyObject *) PyExc_StopIteration;
/external/python/cpython2/Python/
Dmarshal.c227 else if (v == PyExc_StopIteration) { in w_object()
675 Py_INCREF(PyExc_StopIteration); in r_object()
676 retval = PyExc_StopIteration; in r_object()
Dbltinmodule.c111 if (PyErr_ExceptionMatches(PyExc_StopIteration)) in builtin_all()
154 if (PyErr_ExceptionMatches(PyExc_StopIteration)) in builtin_any()
1124 if (!PyErr_ExceptionMatches(PyExc_StopIteration)) in builtin_next()
1133 PyErr_SetNone(PyExc_StopIteration); in builtin_next()
/external/tensorflow/tensorflow/python/lib/core/
Dpy_func.cc221 } else if (PyErr_ExceptionMatches(PyExc_StopIteration)) { in DoCallPyFunc()
/external/python/cpython3/Python/
Dbltinmodule.c359 if (PyErr_ExceptionMatches(PyExc_StopIteration)) in builtin_all()
408 if (PyErr_ExceptionMatches(PyExc_StopIteration)) in builtin_any()
1397 if(!PyErr_ExceptionMatches(PyExc_StopIteration)) in builtin_next()
1406 PyErr_SetNone(PyExc_StopIteration); in builtin_next()
Dmarshal.c354 else if (v == PyExc_StopIteration) { in w_object()
972 Py_INCREF(PyExc_StopIteration); in r_object()
973 retval = PyExc_StopIteration; in r_object()
Dhamt.c2577 PyErr_SetNone(PyExc_StopIteration); in hamt_baseiter_tp_iternext()
/external/python/cpython3/Tools/c-analyzer/
Dignored-globals.txt414 PyExc_StopIteration
/external/python/cpython3/PC/
Dpython3.def231 PyExc_StopIteration=python39.PyExc_StopIteration DATA
/external/python/cpython2/PC/os2emx/
Dpython27.def784 "PyExc_StopIteration"
/external/python/pybind11/include/pybind11/detail/
Dcommon.h723 PYBIND11_RUNTIME_EXCEPTION(stop_iteration, PyExc_StopIteration)
/external/python/cpython2/Doc/c-api/
Dexceptions.rst549 single: PyExc_StopIteration
618 | :c:data:`PyExc_StopIteration` | :exc:`StopIteration` | |
/external/python/cpython3/Doc/c-api/
Dexceptions.rst829 single: PyExc_StopIteration
925 | :c:data:`PyExc_StopIteration` | :exc:`StopIteration` | |
/external/python/cpython3/Modules/
D_json.c343 PyErr_SetObject(PyExc_StopIteration, value); in raise_stop_iteration()

12