Home
last modified time | relevance | path

Searched refs:as_sequence (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Objects/
Dtypeslots.inc40 offsetof(PyHeapTypeObject, as_sequence.sq_ass_item),
41 offsetof(PyHeapTypeObject, as_sequence.sq_concat),
42 offsetof(PyHeapTypeObject, as_sequence.sq_contains),
43 offsetof(PyHeapTypeObject, as_sequence.sq_inplace_concat),
44 offsetof(PyHeapTypeObject, as_sequence.sq_inplace_repeat),
45 offsetof(PyHeapTypeObject, as_sequence.sq_item),
46 offsetof(PyHeapTypeObject, as_sequence.sq_length),
47 offsetof(PyHeapTypeObject, as_sequence.sq_repeat),
Dtypeobject.c2605 type->tp_as_sequence = &et->as_sequence; in type_new()
2911 type->tp_as_sequence = &res->as_sequence; in PyType_FromSpecWithBases()
6767 ETSLOT(NAME, as_sequence.SLOT, FUNCTION, WRAPPER, DOC)
6992 if ((size_t)offset >= offsetof(PyHeapTypeObject, as_sequence)) { in slotptr()
6994 offset -= offsetof(PyHeapTypeObject, as_sequence); in slotptr()
/external/python/cpython2/Include/
Dobject.h421 PySequenceMethods as_sequence; /* as_sequence comes after as_mapping, member
/external/python/cpython3/Include/
Dobject.h468 PySequenceMethods as_sequence; /* as_sequence comes after as_mapping, member
/external/python/cpython2/Objects/
Dtypeobject.c2369 type->tp_as_sequence = &et->as_sequence; in type_new()
6013 ETSLOT(NAME, as_sequence.SLOT, FUNCTION, WRAPPER, DOC)
6244 if ((size_t)offset >= offsetof(PyHeapTypeObject, as_sequence)) {
6246 offset -= offsetof(PyHeapTypeObject, as_sequence);