Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Ditertoolsmodule.c405 static PyTypeObject teedataobject_type; variable
412 tdo = PyObject_GC_New(teedataobject, &teedataobject_type); in teedataobject_newinternal()
469 while (obj && Py_TYPE(obj) == &teedataobject_type && in teedataobject_safe_decref()
520 static PyTypeObject teedataobject_type; variable
529 assert(type == &teedataobject_type); in teedataobject_new()
549 if (Py_TYPE(next) != &teedataobject_type) in teedataobject_new()
575 static PyTypeObject teedataobject_type = { variable
739 if (!PyArg_ParseTuple(state, "O!i", &teedataobject_type, &tdo, &index)) { in tee_setstate()
4657 &teedataobject_type, in PyInit_itertools()
4661 Py_TYPE(&teedataobject_type) = &PyType_Type; in PyInit_itertools()
/external/python/cpython2/Modules/
Ditertoolsmodule.c342 static PyTypeObject teedataobject_type; variable
349 tdo = PyObject_GC_New(teedataobject, &teedataobject_type); in teedataobject_new()
405 while (obj && Py_TYPE(obj) == &teedataobject_type && in teedataobject_safe_decref()
440 static PyTypeObject teedataobject_type = { variable
4120 Py_TYPE(&teedataobject_type) = &PyType_Type; in inititertools()
4134 if (PyType_Ready(&teedataobject_type) < 0) in inititertools()