Searched refs:tp_getattr (Results 1 - 4 of 4) sorted by relevance
/third_party/python/Doc/includes/ |
H A D | typestruct.h | 10 getattrfunc tp_getattr; member
|
/third_party/python/Objects/ |
H A D | object.c | 796 if (Py_TYPE(v)->tp_getattr != NULL) in PyObject_GetAttrString() 797 return (*Py_TYPE(v)->tp_getattr)(v, (char*)name); in PyObject_GetAttrString() 918 else if (tp->tp_getattr != NULL) { in PyObject_GetAttr() 923 result = (*tp->tp_getattr)(v, (char *)name_str); in PyObject_GetAttr() 963 else if (tp->tp_getattr != NULL) { in _PyObject_LookupAttr() 969 *result = (*tp->tp_getattr)(v, (char *)name_str); in _PyObject_LookupAttr() 1044 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL) in PyObject_SetAttr() 1693 0, /*tp_getattr*/ 1794 0, /*tp_getattr*/
|
H A D | typeobject.c | 3031 if (base->tp_getattr == NULL && base->tp_getattro == NULL) { in type_new_set_slots() 4402 0, /* tp_getattr */ 5616 0, /* tp_getattr */ 5961 if (type->tp_getattr == NULL && type->tp_getattro == NULL) { in inherit_slots() 5962 type->tp_getattr = base->tp_getattr; in inherit_slots() 8040 TPSLOT("__getattribute__", tp_getattr, NULL, NULL, ""), 8041 TPSLOT("__getattr__", tp_getattr, NULL, NULL, ""), 9186 0, /* tp_getattr */
|
/third_party/python/Include/cpython/ |
H A D | object.h | 157 getattrfunc tp_getattr; member
|
Completed in 16 milliseconds