Searched refs:_PyDict_Next (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Include/cpython/ |
D | dictobject.h | 44 PyAPI_FUNC(int) _PyDict_Next(
|
/third_party/python/Objects/ |
D | dictobject.c | 1818 _PyDict_Next(PyObject *op, Py_ssize_t *ppos, PyObject **pkey, in _PyDict_Next() function 1882 return _PyDict_Next(op, ppos, pkey, pvalue, NULL); in PyDict_Next() 1991 while (_PyDict_Next(iterable, &pos, &key, &oldvalue, &hash)) { in _PyDict_FromKeys() 4562 while (_PyDict_Next(d2, &pos, &key, &val2, &hash)) { in dictitems_xor()
|
D | setobject.c | 905 while (_PyDict_Next(other, &pos, &key, &value, &hash)) { in set_update_internal() 1611 while (_PyDict_Next(other, &pos, &key, &value, &hash)) { in set_symmetric_difference_update()
|
/third_party/python/Modules/ |
D | _sre.c | 2184 while (_PyDict_Next(self->pattern->groupindex, &pos, &key, &value, &hash)) { in _sre_SRE_Match_groupdict_impl()
|