Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cf/
D_CFmodule.c1122 PyTypeObject CFMutableDictionaryRef_Type; variable
1124 …yRefObj_Check(x) ((x)->ob_type == &CFMutableDictionaryRef_Type || PyObject_TypeCheck((x), &CFMutab…
1140 it = PyObject_NEW(CFMutableDictionaryRefObject, &CFMutableDictionaryRef_Type); in CFMutableDictionaryRefObj_New()
1250 PyTypeObject CFMutableDictionaryRef_Type = { variable
4933 CFMutableDictionaryRef_Type.ob_type = &PyType_Type; in init_CF()
4934 CFMutableDictionaryRef_Type.tp_base = &CFDictionaryRef_Type; in init_CF()
4935 if (PyType_Ready(&CFMutableDictionaryRef_Type) < 0) return; in init_CF()
4936 Py_INCREF(&CFMutableDictionaryRef_Type); in init_CF()
4937 PyModule_AddObject(m, "CFMutableDictionaryRef", (PyObject *)&CFMutableDictionaryRef_Type); in init_CF()
4939 Py_INCREF(&CFMutableDictionaryRef_Type); in init_CF()
[all …]