Searched refs:sq_inplace_concat (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 43 offsetof(PyHeapTypeObject, as_sequence.sq_inplace_concat),
|
D | abstract.c | 1117 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()
|
D | typeobject.c | 5026 COPYSEQ(sq_inplace_concat); in inherit_slots() 6968 SQSLOT("__iadd__", sq_inplace_concat, NULL,
|
/external/python/cpython2/Include/ |
D | object.h | 285 binaryfunc sq_inplace_concat; member
|
/external/python/cpython3/Include/ |
D | object.h | 297 binaryfunc sq_inplace_concat; member
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1347 f = m->sq_inplace_concat; 1941 if (m && HASINPLACE(s) && m->sq_inplace_concat) 1942 return m->sq_inplace_concat(s, o);
|
D | typeobject.c | 4014 COPYSEQ(sq_inplace_concat); 6223 SQSLOT("__iadd__", sq_inplace_concat, NULL,
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 474 :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/ |
D | typeobj.rst | 1253 .. c:member:: binaryfunc PySequenceMethods.sq_inplace_concat
|
/external/python/cpython2/Misc/ |
D | HISTORY | 5272 - The sq_repeat, sq_inplace_repeat, sq_concat and sq_inplace_concat
|
/external/python/cpython3/Misc/ |
D | HISTORY | 22656 - The sq_repeat, sq_inplace_repeat, sq_concat and sq_inplace_concat
|