Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dtypeobject.c2613 descrgetfunc meta_get; in type_getattro() local
2630 meta_get = NULL; in type_getattro()
2637 meta_get = Py_TYPE(meta_attribute)->tp_descr_get; in type_getattro()
2639 if (meta_get != NULL && PyDescr_IsData(meta_attribute)) { in type_getattro()
2644 res = meta_get(meta_attribute, (PyObject *)type, in type_getattro()
2676 if (meta_get != NULL) { in type_getattro()
2678 res = meta_get(meta_attribute, (PyObject *)type, in type_getattro()
/external/python/cpython3/Objects/
Dtypeobject.c3314 descrgetfunc meta_get; in type_getattro() local
3331 meta_get = NULL; in type_getattro()
3338 meta_get = Py_TYPE(meta_attribute)->tp_descr_get; in type_getattro()
3340 if (meta_get != NULL && PyDescr_IsData(meta_attribute)) { in type_getattro()
3345 res = meta_get(meta_attribute, (PyObject *)type, in type_getattro()
3376 if (meta_get != NULL) { in type_getattro()
3378 res = meta_get(meta_attribute, (PyObject *)type, in type_getattro()