Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cf/
D_CFmodule.c478 PyTypeObject CFArrayRef_Type; variable
480 …efine CFArrayRefObj_Check(x) ((x)->ob_type == &CFArrayRef_Type || PyObject_TypeCheck((x), &CFArray…
496 it = PyObject_NEW(CFArrayRefObject, &CFArrayRef_Type); in CFArrayRefObj_New()
640 PyTypeObject CFArrayRef_Type = { variable
737 CFArrayRef_Type.tp_dealloc((PyObject *)self); in CFMutableArrayRefObj_dealloc()
4909 CFArrayRef_Type.ob_type = &PyType_Type; in init_CF()
4910 CFArrayRef_Type.tp_base = &CFTypeRef_Type; in init_CF()
4911 if (PyType_Ready(&CFArrayRef_Type) < 0) return; in init_CF()
4912 Py_INCREF(&CFArrayRef_Type); in init_CF()
4913 PyModule_AddObject(m, "CFArrayRef", (PyObject *)&CFArrayRef_Type); in init_CF()
[all …]