Home
last modified time | relevance | path

Searched refs:as_sequence (Results 1 – 6 of 6) 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.c2616 type->tp_as_sequence = &et->as_sequence; in type_new()
2994 type->tp_as_sequence = &res->as_sequence; in PyType_FromModuleAndSpec()
7099 ETSLOT(NAME, as_sequence.SLOT, FUNCTION, WRAPPER, DOC)
7324 if ((size_t)offset >= offsetof(PyHeapTypeObject, as_sequence)) { in slotptr()
7326 offset -= offsetof(PyHeapTypeObject, as_sequence); in slotptr()
/external/python/cpython3/Include/cpython/
Dobject.h284 PySequenceMethods as_sequence; /* as_sequence comes after as_mapping, member
/external/python/cpython2/Include/
Dobject.h421 PySequenceMethods as_sequence; /* as_sequence comes after as_mapping, member
/external/python/pybind11/include/pybind11/detail/
Dclass.h667 type->tp_as_sequence = &heap_type->as_sequence; in make_new_python_type()
/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);