Home
last modified time | relevance | path

Searched refs:sq_contains (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Objects/
Dtypeslots.inc42 {offsetof(PySequenceMethods, sq_contains), offsetof(PyTypeObject, tp_as_sequence)},
Dabstract.c2284 if (sqm != NULL && sqm->sq_contains != NULL) { in PySequence_Contains()
2285 int res = (*sqm->sq_contains)(seq, ob); in PySequence_Contains()
Dtypeobject.c5840 COPYSEQ(sq_contains); in inherit_slots()
8081 SQSLOT("__contains__", sq_contains, slot_sq_contains, wrap_objobjproc,
/third_party/python/Include/cpython/
Dobject.h159 objobjproc sq_contains; member
/third_party/python/Doc/c-api/
Dstructures.rst380 *sq_contains* slot, for example, would generate a wrapped method named
Dtypeobj.rst312 …| :c:member:`~PySequenceMethods.sq_contains` | :c:type:`objobjproc` | __…
2281 .. c:member:: objobjproc PySequenceMethods.sq_contains
/third_party/python/Misc/
DHISTORY20999 method, for example, to co-exist with a defined sq_contains slot. This