Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cm/
D_Cmmodule.c61 PyTypeObject ComponentInstance_Type; variable
63 …e CmpInstObj_Check(x) ((x)->ob_type == &ComponentInstance_Type || PyObject_TypeCheck((x), &Compone…
77 it = PyObject_NEW(ComponentInstanceObject, &ComponentInstance_Type); in CmpInstObj_New()
283 PyTypeObject ComponentInstance_Type = { variable
938 ComponentInstance_Type.ob_type = &PyType_Type; in init_Cm()
939 if (PyType_Ready(&ComponentInstance_Type) < 0) return; in init_Cm()
940 Py_INCREF(&ComponentInstance_Type); in init_Cm()
941 PyModule_AddObject(m, "ComponentInstance", (PyObject *)&ComponentInstance_Type); in init_Cm()
943 Py_INCREF(&ComponentInstance_Type); in init_Cm()
944 PyModule_AddObject(m, "ComponentInstanceType", (PyObject *)&ComponentInstance_Type); in init_Cm()