Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dtypeslots.inc43 offsetof(PyHeapTypeObject, as_sequence.sq_inplace_concat),
Dabstract.c1117 f = m->sq_inplace_concat; in PyNumber_InPlaceAdd()
1605 if (m && m->sq_inplace_concat) in PySequence_InPlaceConcat()
1606 return m->sq_inplace_concat(s, o); in PySequence_InPlaceConcat()
Dtypeobject.c5026 COPYSEQ(sq_inplace_concat); in inherit_slots()
6968 SQSLOT("__iadd__", sq_inplace_concat, NULL,
/external/python/cpython2/Include/
Dobject.h285 binaryfunc sq_inplace_concat; member
/external/python/cpython3/Include/
Dobject.h297 binaryfunc sq_inplace_concat; member
/external/python/cpython2/Objects/
Dabstract.c1347 f = m->sq_inplace_concat;
1941 if (m && HASINPLACE(s) && m->sq_inplace_concat)
1942 return m->sq_inplace_concat(s, o);
Dtypeobject.c4014 COPYSEQ(sq_inplace_concat);
6223 SQSLOT("__iadd__", sq_inplace_concat, NULL,
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst474 :c:type:`PySequenceMethods` struct has the fields :attr:`sq_inplace_concat` and
1319 .. c:member:: binaryfunc PySequenceMethods.sq_inplace_concat
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1253 .. c:member:: binaryfunc PySequenceMethods.sq_inplace_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