Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Ddictobject.h44 PyAPI_FUNC(int) _PyDict_Next(
/third_party/python/Objects/
Ddictobject.c1818 _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()
Dsetobject.c905 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.c2184 while (_PyDict_Next(self->pattern->groupindex, &pos, &key, &value, &hash)) { in _sre_SRE_Match_groupdict_impl()