Searched refs:_PySet_NextEntry (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Include/ |
D | setobject.h | 92 PyAPI_FUNC(int) _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash);
|
/external/python/cpython2/Objects/ |
D | codeobject.c | 512 while (_PySet_NextEntry(op, &pos, &item, &hash)) { in _PyCode_ConstantKey()
|
D | setobject.c | 2346 _PySet_NextEntry(PyObject *set, Py_ssize_t *pos, PyObject **key, long *hash) in _PySet_NextEntry() function
|
D | dictobject.c | 1420 while (_PySet_NextEntry(seq, &pos, &key, &hash)) { in dict_fromkeys()
|