Searched refs:tp_iter (Results 1 - 13 of 13) sorted by relevance
/third_party/python/Doc/includes/ |
H A D | typestruct.h | 53 getiterfunc tp_iter; member
|
/third_party/python/Objects/ |
H A D | genericaliasobject.c | 297 if (Py_TYPE(param)->tp_iter && PyTuple_Check(arg)) { // TypeVarTuple in subs_tvars() 912 .tp_iter = PyObject_SelfIter, 957 .tp_iter = (getiterfunc)ga_iter,
|
H A D | dictobject.c | 785 assert(Py_TYPE(orig)->tp_iter == (getiterfunc)dict_iter); in clone_combined_dict_keys() 2832 if (PyDict_Check(b) && (Py_TYPE(b)->tp_iter == (getiterfunc)dict_iter)) { in dict_merge() 3059 if (Py_TYPE(mp)->tp_iter == (getiterfunc)dict_iter && in PyDict_Copy() 3065 (1) type(mp) doesn't override tp_iter; and in PyDict_Copy() 3868 (getiterfunc)dict_iter, /* tp_iter */ 4137 PyObject_SelfIter, /* tp_iter */ 4237 PyObject_SelfIter, /* tp_iter */ 4363 PyObject_SelfIter, /* tp_iter */ 4482 .tp_iter = PyObject_SelfIter, 4524 .tp_iter [all...] |
H A D | memoryobject.c | 3275 .tp_iter = PyObject_SelfIter, 3306 memory_iter, /* tp_iter */
|
H A D | abstract.c | 2796 f = t->tp_iter; in PyObject_GetIter()
|
H A D | typeobject.c | 4423 0, /* tp_iter */ 5635 0, /* tp_iter */ 6005 COPYSLOT(tp_iter); in inherit_slots() 8073 TPSLOT("__iter__", tp_iter, slot_tp_iter, wrap_unaryfunc, 9206 0, /* tp_iter */
|
H A D | unicodeobject.c | 15444 unicode_iter, /* tp_iter */ 15833 PyObject_SelfIter, /* tp_iter */ 15847 .tp_iter = PyObject_SelfIter,
|
/third_party/python/Include/cpython/ |
H A D | object.h | 200 getiterfunc tp_iter; member
|
/third_party/python/Modules/ |
H A D | _asynciomodule.c | 1522 .tp_iter = (getiterfunc)future_new_iter, 1757 .tp_iter = PyObject_SelfIter, 2536 .tp_iter = (getiterfunc)future_new_iter,
|
/third_party/python/Python/ |
H A D | context.c | 719 .tp_iter = (getiterfunc)context_tp_iter,
|
H A D | hamt.c | 2616 .tp_iter = PyObject_SelfIter, \ 2908 .tp_iter = (getiterfunc)hamt_tp_iter,
|
H A D | ceval.c | 3275 (Py_TYPE(iterable)->tp_iter == NULL && !PySequence_Check(iterable))) 6701 Py_TYPE(v)->tp_iter == NULL && !PySequence_Check(v)) 7683 if (Py_TYPE(args)->tp_iter == NULL && !PySequence_Check(args)) {
|
/third_party/python/Modules/_decimal/ |
H A D | _decimal.c | 561 return PyTuple_Type.tp_iter(SignalTuple); in signaldict_iter() 708 (getiterfunc)signaldict_iter, /* tp_iter */ 1870 0, /* tp_iter */ 5024 0, /* tp_iter */ 5709 0, /* tp_iter */
|
Completed in 69 milliseconds