Home
last modified time | relevance | path

Searched refs:_PySet_NextEntry (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dsetobject.h92 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash);
/external/python/cpython2/Objects/
Dcodeobject.c512 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
Dsetobject.c2346 _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash) in _PySet_NextEntry() function
Ddictobject.c1420 while (_PySet_NextEntry(seq, &pos, &key, &hash)) { in dict_fromkeys()