Home
last modified time | relevance | path

Searched refs:itertype (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Ddictobject.c3548 dictiter_new(PyDictObject *dict, PyTypeObject *itertype) in dictiter_new() argument
3551 di = PyObject_GC_New(dictiterobject, itertype); in dictiter_new()
3559 if (itertype == &PyDictRevIterKey_Type || in dictiter_new()
3560 itertype == &PyDictRevIterItem_Type || in dictiter_new()
3561 itertype == &PyDictRevIterValue_Type) { in dictiter_new()
3572 if (itertype == &PyDictIterItem_Type || in dictiter_new()
3573 itertype == &PyDictRevIterItem_Type) { in dictiter_new()
/external/python/cpython2/Objects/
Ddictobject.c2553 dictiter_new(PyDictObject *dict, PyTypeObject *itertype) in dictiter_new() argument
2556 di = PyObject_GC_New(dictiterobject, itertype); in dictiter_new()
2564 if (itertype == &PyDictIterItem_Type) { in dictiter_new()