Searched defs:CFStringRef_Type (Results 1 - 1 of 1) sorted by relevance

/external/python/cpython2/Mac/Modules/cf/
H A D_CFmodule.c1795 PyTypeObject CFStringRef_Type; variable
1797 #define CFStringRefObj_Check(x) ((x)->ob_type == &CFStringRef_Type || PyObject_TypeCheck((x), &CFStringRef_Type))
1813 it = PyObject_NEW(CFStringRefObject, &CFStringRef_Type);
2489 PyTypeObject CFStringRef_Type = { variable
2586 CFStringRef_Type.tp_dealloc((PyObject *)self);
4957 CFStringRef_Type.ob_type = &PyType_Type;
4958 CFStringRef_Type.tp_base = &CFTypeRef_Type;
4959 if (PyType_Ready(&CFStringRef_Type) < 0) return;
4960 Py_INCREF(&CFStringRef_Type);
[all...]

Completed in 79 milliseconds