Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cf/
D_CFmodule.c689 PyTypeObject CFMutableArrayRef_Type; variable
691 …eArrayRefObj_Check(x) ((x)->ob_type == &CFMutableArrayRef_Type || PyObject_TypeCheck((x), &CFMutab…
707 it = PyObject_NEW(CFMutableArrayRefObject, &CFMutableArrayRef_Type); in CFMutableArrayRefObj_New()
880 PyTypeObject CFMutableArrayRef_Type = { variable
4917 CFMutableArrayRef_Type.ob_type = &PyType_Type; in init_CF()
4918 CFMutableArrayRef_Type.tp_base = &CFArrayRef_Type; in init_CF()
4919 if (PyType_Ready(&CFMutableArrayRef_Type) < 0) return; in init_CF()
4920 Py_INCREF(&CFMutableArrayRef_Type); in init_CF()
4921 PyModule_AddObject(m, "CFMutableArrayRef", (PyObject *)&CFMutableArrayRef_Type); in init_CF()
4923 Py_INCREF(&CFMutableArrayRef_Type); in init_CF()
[all …]