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

/external/python/cpython2/Mac/Modules/cf/
H A D_CFmodule.c2926 PyTypeObject CFURLRef_Type; variable
2928 #define CFURLRefObj_Check(x) ((x)->ob_type == &CFURLRef_Type || PyObject_TypeCheck((x), &CFURLRef_Type))
2944 it = PyObject_NEW(CFURLRefObject, &CFURLRef_Type);
3529 PyTypeObject CFURLRef_Type = { variable
4973 CFURLRef_Type.ob_type = &PyType_Type;
4974 CFURLRef_Type.tp_base = &CFTypeRef_Type;
4975 if (PyType_Ready(&CFURLRef_Type) < 0) return;
4976 Py_INCREF(&CFURLRef_Type);
4977 PyModule_AddObject(m, "CFURLRef", (PyObject *)&CFURLRef_Type);
[all...]

Completed in 135 milliseconds