Searched refs:sq_concat (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 41 offsetof(PyHeapTypeObject, as_sequence.sq_concat),
|
D | abstract.c | 1022 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()
|
D | typeobject.c | 5256 COPYSEQ(sq_concat); in inherit_slots() 7286 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1189 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);
|
D | typeobject.c | 4007 COPYSEQ(sq_concat); 6196 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 160 binaryfunc sq_concat; member
|
/external/python/cpython2/Include/ |
D | object.h | 277 binaryfunc sq_concat; member
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 301 …| :c:member:`~PySequenceMethods.sq_concat` | :c:type:`binaryfunc` | __… 2131 .. c:member:: binaryfunc PySequenceMethods.sq_concat
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 1282 .. c:member:: binaryfunc PySequenceMethods.sq_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
|