Searched refs:tp_descr_get (Results 1 - 9 of 9) sorted by relevance
/third_party/python/Doc/includes/ |
H A D | typestruct.h | 63 descrgetfunc tp_descr_get; member
|
/third_party/python/Objects/ |
H A D | classobject.c | 12 #define TP_DESCR_GET(t) ((t)->tp_descr_get) 543 .tp_descr_get = instancemethod_descr_get,
|
H A D | typeobject.c | 881 else if (Py_TYPE(result)->tp_descr_get) { in type_get_doc() 882 result = Py_TYPE(result)->tp_descr_get(result, NULL, in type_get_doc() 925 if (Py_TYPE(annotations)->tp_descr_get) { in type_get_annotations() 926 annotations = Py_TYPE(annotations)->tp_descr_get( in type_get_annotations() 1585 if ((f = Py_TYPE(res)->tp_descr_get) == NULL) in _PyObject_LookupSpecial() 1617 descrgetfunc f = Py_TYPE(res)->tp_descr_get; in lookup_maybe_method() 2332 func = Py_TYPE(descr)->tp_descr_get; in subtype_dict() 3930 meta_get = Py_TYPE(meta_attribute)->tp_descr_get; in type_getattro() 3950 descrgetfunc local_get = Py_TYPE(attribute)->tp_descr_get; in type_getattro() 4430 0, /* tp_descr_get */ [all...] |
H A D | funcobject.c | 792 func_descr_get, /* tp_descr_get */ 904 if (Py_TYPE(cm->cm_callable)->tp_descr_get != NULL) { in cm_descr_get() 905 return Py_TYPE(cm->cm_callable)->tp_descr_get(cm->cm_callable, type, in cm_descr_get() 1017 cm_descr_get, /* tp_descr_get */ 1213 sm_descr_get, /* tp_descr_get */
|
H A D | object.c | 1175 f = Py_TYPE(descr)->tp_descr_get; in _PyObject_GetMethod() 1276 f = Py_TYPE(descr)->tp_descr_get; in _PyObject_GenericGetAttrWithDict() 1719 0, /*tp_descr_get */ 1820 0, /*tp_descr_get */
|
/third_party/python/Include/cpython/ |
H A D | object.h | 210 descrgetfunc tp_descr_get; member
|
/third_party/python/Python/ |
H A D | specialize.c | 590 if (desc_cls->tp_descr_get) { in analyze_descriptor()
|
H A D | ceval.c | 7305 func = Py_TYPE(func)->tp_descr_get(func, self, (PyObject*)Py_TYPE(self)); 7343 func = Py_TYPE(func)->tp_descr_get(func, self, (PyObject*)Py_TYPE(self));
|
/third_party/python/Modules/ |
H A D | _testcapimodule.c | 382 0, /* tp_descr_get */ 7127 0, /* tp_descr_get */ 7208 0, /* tp_descr_get */ 7347 .tp_descr_get = func_descr_get, 7361 .tp_descr_get = nop_descr_get,
|
Completed in 38 milliseconds