Home
last modified time | relevance | path

Searched refs:sq_concat (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Objects/
Dabstract.c1078 if (m && m->sq_concat) { in PyNumber_Add()
1079 result = (*m->sq_concat)(v, w); in PyNumber_Add()
1272 func = m->sq_concat; in PyNumber_InPlaceAdd()
1768 if (m && m->sq_concat) { in PySequence_Concat()
1769 PyObject *res = m->sq_concat(s, o); in PySequence_Concat()
1830 if (m && m->sq_concat) { in PySequence_InPlaceConcat()
1831 PyObject *res = m->sq_concat(s, o); in PySequence_InPlaceConcat()
Dtypeslots.inc41 {offsetof(PySequenceMethods, sq_concat), offsetof(PyTypeObject, tp_as_sequence)},
Dtypeobject.c5836 COPYSEQ(sq_concat); in inherit_slots()
8069 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
/third_party/python/Include/cpython/
Dobject.h153 binaryfunc sq_concat; member
/third_party/python/Doc/c-api/
Dtypeobj.rst303 …| :c:member:`~PySequenceMethods.sq_concat` | :c:type:`binaryfunc` | __…
2247 .. c:member:: binaryfunc PySequenceMethods.sq_concat
/third_party/python/Misc/
DHISTORY22656 - The sq_repeat, sq_inplace_repeat, sq_concat and sq_inplace_concat