Home
last modified time | relevance | path

Searched refs:Xxo_Type (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Modules/
Dxxmodule.c26 static PyTypeObject Xxo_Type; variable
28 #define XxoObject_Check(v) (Py_TYPE(v) == &Xxo_Type)
34 self = PyObject_New(XxoObject, &Xxo_Type); in newXxoObject()
97 static PyTypeObject Xxo_Type = { variable
353 if (PyType_Ready(&Xxo_Type) < 0) in initxx()
/external/python/cpython3/Modules/
Dxxlimited.c26 static PyObject *Xxo_Type; variable
28 #define XxoObject_Check(v) Py_IS_TYPE(v, Xxo_Type)
34 self = PyObject_GC_New(XxoObject, (PyTypeObject*)Xxo_Type); in newXxoObject()
248 Xxo_Type = PyType_FromSpec(&Xxo_Type_spec); in xx_modexec()
249 if (Xxo_Type == NULL) in xx_modexec()
Dxxmodule.c26 static PyTypeObject Xxo_Type; variable
28 #define XxoObject_Check(v) Py_IS_TYPE(v, &Xxo_Type)
34 self = PyObject_New(XxoObject, &Xxo_Type); in newXxoObject()
100 static PyTypeObject Xxo_Type = { variable
361 if (PyType_Ready(&Xxo_Type) < 0) in xx_exec()