Home
last modified time | relevance | path

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

/third_party/python/Doc/includes/
Dtypestruct.h63 descrgetfunc tp_descr_get; member
/third_party/python/Objects/
Dtypeslots.inc55 {-1, offsetof(PyTypeObject, tp_descr_get)},
Dtypeobject.c910 else if (Py_TYPE(result)->tp_descr_get) { in type_get_doc()
911 result = Py_TYPE(result)->tp_descr_get(result, NULL, in type_get_doc()
953 if (Py_TYPE(annotations)->tp_descr_get) { in type_get_annotations()
954 annotations = Py_TYPE(annotations)->tp_descr_get(annotations, NULL, in type_get_annotations()
1571 if ((f = Py_TYPE(res)->tp_descr_get) == NULL) in _PyObject_LookupSpecial()
1594 descrgetfunc f = Py_TYPE(res)->tp_descr_get; in lookup_maybe_method()
2311 func = Py_TYPE(descr)->tp_descr_get; in subtype_dict()
3916 meta_get = Py_TYPE(meta_attribute)->tp_descr_get; in type_getattro()
3936 descrgetfunc local_get = Py_TYPE(attribute)->tp_descr_get; in type_getattro()
5913 COPYSLOT(tp_descr_get); in inherit_slots()
[all …]
Dfuncobject.c837 if (Py_TYPE(cm->cm_callable)->tp_descr_get != NULL) { in cm_descr_get()
838 return Py_TYPE(cm->cm_callable)->tp_descr_get(cm->cm_callable, type, in cm_descr_get()
Dclassobject.c9 #define TP_DESCR_GET(t) ((t)->tp_descr_get)
Dobject.c1151 f = Py_TYPE(descr)->tp_descr_get; in _PyObject_GetMethod()
1241 f = Py_TYPE(descr)->tp_descr_get; in _PyObject_GenericGetAttrWithDict()
/third_party/python/Include/cpython/
Dobject.h253 descrgetfunc tp_descr_get; member
/third_party/python/Doc/c-api/
Dtypeobj.rst115 …| :c:member:`~PyTypeObject.tp_descr_get` | :c:type:`descrgetfunc` | __get__ …
1141 :c:member:`~PyTypeObject.tp_descr_get` is inherited.
1662 .. c:member:: descrgetfunc PyTypeObject.tp_descr_get
1668 PyObject * tp_descr_get(PyObject *self, PyObject *obj, PyObject *type);
2640 0, /* tp_descr_get */
/third_party/python/Python/
Dceval.c5834 func = Py_TYPE(func)->tp_descr_get(func, self, (PyObject*)Py_TYPE(self)); in trace_call_function()
5905 func = Py_TYPE(func)->tp_descr_get(func, self, (PyObject*)Py_TYPE(self)); in do_call_core()
/third_party/python/Modules/
D_testcapimodule.c6522 .tp_descr_get = func_descr_get,
6536 .tp_descr_get = nop_descr_get,