Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeslots.inc41 offsetof(PyHeapTypeObject, as_sequence.sq_concat),
Dabstract.c1022 if (m && m->sq_concat) { in PyNumber_Add()
1023 return (*m->sq_concat)(v, w); in PyNumber_Add()
1180 f = m->sq_concat; in PyNumber_InPlaceAdd()
1639 if (m && m->sq_concat) in PySequence_Concat()
1640 return m->sq_concat(s, o); in PySequence_Concat()
1696 if (m && m->sq_concat) in PySequence_InPlaceConcat()
1697 return m->sq_concat(s, o); in PySequence_InPlaceConcat()
Dtypeobject.c5256 COPYSEQ(sq_concat); in inherit_slots()
7286 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
/external/python/cpython2/Objects/
Dabstract.c1189 if (m && m->sq_concat) {
1190 return (*m->sq_concat)(v, w);
1349 f = m->sq_concat;
1888 if (m && m->sq_concat)
1889 return m->sq_concat(s, o);
1943 if (m && m->sq_concat)
1944 return m->sq_concat(s, o);
Dtypeobject.c4007 COPYSEQ(sq_concat);
6196 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
/external/python/cpython3/Include/cpython/
Dobject.h160 binaryfunc sq_concat; member
/external/python/cpython2/Include/
Dobject.h277 binaryfunc sq_concat; member
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst301 …| :c:member:`~PySequenceMethods.sq_concat` | :c:type:`binaryfunc` | __…
2131 .. c:member:: binaryfunc PySequenceMethods.sq_concat
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst1282 .. c:member:: binaryfunc PySequenceMethods.sq_concat
/external/python/cpython2/Misc/
DHISTORY5272 - The sq_repeat, sq_inplace_repeat, sq_concat and sq_inplace_concat
/external/python/cpython3/Misc/
DHISTORY22656 - The sq_repeat, sq_inplace_repeat, sq_concat and sq_inplace_concat