Home | History | Annotate | Download | only in _ctypes

Lines Matching refs:Simple_Type

36   Simple_Type           __new__(), __init__(), _as_parameter_
96 * Simple_Type
124 static PyTypeObject Simple_Type;
1486 PyCSimpleType_new ensures that the new Simple_Type subclass created has a valid
1942 if (result->tp_base != &Simple_Type) {
1962 if (result->tp_base == &Simple_Type) {
2773 return type->tp_base != &Simple_Type;
4587 Simple_Type
4678 if (Py_TYPE(self)->tp_base != &Simple_Type) {
4693 static PyTypeObject Simple_Type = {
5437 Py_TYPE(&Simple_Type) = &PyCSimpleType_Type;
5438 Simple_Type.tp_base = &PyCData_Type;
5439 if (PyType_Ready(&Simple_Type) < 0)
5441 Py_INCREF(&Simple_Type);
5442 PyModule_AddObject(m, "_SimpleCData", (PyObject *)&Simple_Type);