Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cg/
D_CGmodule.c96 PyTypeObject CGContextRef_Type; variable
98 …e CGContextRefObj_Check(x) ((x)->ob_type == &CGContextRef_Type || PyObject_TypeCheck((x), &CGConte…
108 it = PyObject_NEW(CGContextRefObject, &CGContextRef_Type); in CGContextRefObj_New()
1214 PyTypeObject CGContextRef_Type = { variable
1306 CGContextRef_Type.ob_type = &PyType_Type; in init_CG()
1307 if (PyType_Ready(&CGContextRef_Type) < 0) return; in init_CG()
1308 Py_INCREF(&CGContextRef_Type); in init_CG()
1309 PyModule_AddObject(m, "CGContextRef", (PyObject *)&CGContextRef_Type); in init_CG()
1311 Py_INCREF(&CGContextRef_Type); in init_CG()
1312 PyModule_AddObject(m, "CGContextRefType", (PyObject *)&CGContextRef_Type); in init_CG()