Searched refs:tp_getattro (Results 1 - 15 of 15) sorted by relevance
/third_party/python/Doc/includes/ |
H A D | typestruct.h | 27 getattrofunc tp_getattro; member
|
/third_party/python/Python/ |
H A D | context.c | 721 .tp_getattro = PyObject_GenericGetAttr, 1072 .tp_getattro = PyObject_GenericGetAttr, 1213 .tp_getattro = PyObject_GenericGetAttr, 1269 .tp_getattro = PyObject_GenericGetAttr,
|
H A D | hamt.c | 2612 .tp_getattro = PyObject_GenericGetAttr, \ 2910 .tp_getattro = PyObject_GenericGetAttr, 2930 .tp_getattro = PyObject_GenericGetAttr, 2943 .tp_getattro = PyObject_GenericGetAttr, 2956 .tp_getattro = PyObject_GenericGetAttr,
|
H A D | specialize.c | 557 if (type->tp_getattro != PyObject_GenericGetAttr) { in analyze_descriptor()
|
/third_party/python/Objects/ |
H A D | object.c | 915 if (tp->tp_getattro != NULL) { in PyObject_GetAttr() 916 result = (*tp->tp_getattro)(v, name); in PyObject_GetAttr() 950 if (tp->tp_getattro == PyObject_GenericGetAttr) { in _PyObject_LookupAttr() 960 if (tp->tp_getattro != NULL) { in _PyObject_LookupAttr() 961 *result = (*tp->tp_getattro)(v, name); in _PyObject_LookupAttr() 1044 if (tp->tp_getattr == NULL && tp->tp_getattro == NULL) in PyObject_SetAttr() 1163 if (tp->tp_getattro != PyObject_GenericGetAttr || !PyUnicode_CheckExact(name)) { in _PyObject_GetMethod() 1703 0, /*tp_getattro */ 1804 0, /*tp_getattro */
|
H A D | classobject.c | 333 .tp_getattro = method_getattro, 535 .tp_getattro = instancemethod_getattro,
|
H A D | unionobject.c | 384 .tp_getattro = union_getattro,
|
H A D | typeobject.c | 3031 if (base->tp_getattr == NULL && base->tp_getattro == NULL) { in type_new_set_slots() 3032 type->tp_getattro = PyObject_GenericGetAttr; in type_new_set_slots() 4412 (getattrofunc)type_getattro, /* tp_getattro */ 5626 PyObject_GenericGetAttr, /* tp_getattro */ 5961 if (type->tp_getattr == NULL && type->tp_getattro == NULL) { in inherit_slots() 5963 type->tp_getattro = base->tp_getattro; in inherit_slots() 7642 /* There are two slot dispatch functions for tp_getattro. 7692 tp->tp_getattro = slot_tp_getattro; in slot_tp_getattr_hook() 8053 TPSLOT("__getattribute__", tp_getattro, slot_tp_getattr_hoo [all...] |
H A D | genericaliasobject.c | 946 .tp_getattro = ga_getattro,
|
H A D | memoryobject.c | 162 PyObject_GenericGetAttr, /* tp_getattro */ 3272 .tp_getattro = PyObject_GenericGetAttr, 3296 PyObject_GenericGetAttr, /* tp_getattro */
|
H A D | unicodeobject.c | 15433 PyObject_GenericGetAttr, /* tp_getattro */ 15824 PyObject_GenericGetAttr, /* tp_getattro */ 15844 .tp_getattro = PyObject_GenericGetAttr,
|
/third_party/python/Include/cpython/ |
H A D | object.h | 174 getattrofunc tp_getattro; member
|
/third_party/python/Modules/ |
H A D | _asynciomodule.c | 1754 .tp_getattro = PyObject_GenericGetAttr, 1872 .tp_getattro = PyObject_GenericGetAttr, 3299 .tp_getattro = PyObject_GenericGetAttr,
|
H A D | _zoneinfo.c | 2602 .tp_getattro = PyObject_GenericGetAttr,
|
/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | message.cc | 483 PyObject* result = CMessageClass_Type->tp_base->tp_getattro( in GetAttr() 515 (getattrofunc)message_meta::GetAttr, // tp_getattro 2788 cmessage::GetAttr, // tp_getattro
|
Completed in 72 milliseconds