Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeobject.c4941 PyTypeObject *basebase; in inherit_slots() local
4952 (basebase == NULL || base->SLOT != basebase->SLOT)) in inherit_slots()
4967 basebase = base->tp_base; in inherit_slots()
4968 if (basebase->tp_as_number == NULL) in inherit_slots()
4969 basebase = NULL; in inherit_slots()
5008 basebase = base->tp_base; in inherit_slots()
5009 if (basebase->tp_as_async == NULL) in inherit_slots()
5010 basebase = NULL; in inherit_slots()
5017 basebase = base->tp_base; in inherit_slots()
5018 if (basebase->tp_as_sequence == NULL) in inherit_slots()
[all …]
/external/python/cpython2/Objects/
Dtypeobject.c3929 PyTypeObject *basebase; local
3940 (basebase == NULL || base->SLOT != basebase->SLOT))
3954 basebase = base->tp_base;
3955 if (basebase->tp_as_number == NULL)
3956 basebase = NULL;
4003 basebase = base->tp_base;
4004 if (basebase->tp_as_sequence == NULL)
4005 basebase = NULL;
4019 basebase = base->tp_base;
4020 if (basebase->tp_as_mapping == NULL)
[all …]