Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dabstract.c961 if (m && m->sq_concat) { in PyNumber_Add()
962 return (*m->sq_concat)(v, w); in PyNumber_Add()
1119 f = m->sq_concat; in PyNumber_InPlaceAdd()
1550 if (m && m->sq_concat) in PySequence_Concat()
1551 return m->sq_concat(s, o); in PySequence_Concat()
1607 if (m && m->sq_concat) in PySequence_InPlaceConcat()
1608 return m->sq_concat(s, o); in PySequence_InPlaceConcat()
Dtypeslots.inc41 offsetof(PyHeapTypeObject, as_sequence.sq_concat),
Dtypeobject.c5021 COPYSEQ(sq_concat); in inherit_slots()
6954 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/cpython2/Include/
Dobject.h277 binaryfunc sq_concat; member
/external/python/cpython3/Include/
Dobject.h289 binaryfunc sq_concat; member
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1212 .. 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