Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cf/
Dpycfbridge.c147 PyCF_Python2CF(PyObject *src, CFTypeRef *dst) { in PyCF_Python2CF() function
181 if ( !PyCF_Python2CF(item_py, &item_cf)) goto err; in PyCF_Python2CF_sequence()
224 if ( !PyCF_Python2CF(key_py, &key_cf) ) goto err; in PyCF_Python2CF_mapping()
225 if ( !PyCF_Python2CF(value_py, &value_cf) ) goto err; in PyCF_Python2CF_mapping()
Dpycfbridge.h7 extern int PyCF_Python2CF(PyObject *src, CFTypeRef *dst);
D_CFmodule.c4690 if (!PyArg_ParseTuple(_args, "O&", PyCF_Python2CF, &rv)) in CF_toCF()