Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cf/
D_CFmodule.c929 PyTypeObject CFDictionaryRef_Type; variable
931 …ctionaryRefObj_Check(x) ((x)->ob_type == &CFDictionaryRef_Type || PyObject_TypeCheck((x), &CFDicti…
947 it = PyObject_NEW(CFDictionaryRefObject, &CFDictionaryRef_Type); in CFDictionaryRefObj_New()
1073 PyTypeObject CFDictionaryRef_Type = { variable
1170 CFDictionaryRef_Type.tp_dealloc((PyObject *)self); in CFMutableDictionaryRefObj_dealloc()
4925 CFDictionaryRef_Type.ob_type = &PyType_Type; in init_CF()
4926 CFDictionaryRef_Type.tp_base = &CFTypeRef_Type; in init_CF()
4927 if (PyType_Ready(&CFDictionaryRef_Type) < 0) return; in init_CF()
4928 Py_INCREF(&CFDictionaryRef_Type); in init_CF()
4929 PyModule_AddObject(m, "CFDictionaryRef", (PyObject *)&CFDictionaryRef_Type); in init_CF()
[all …]