Searched refs:sq_concat (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Objects/ |
D | abstract.c | 961 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()
|
D | typeslots.inc | 41 offsetof(PyHeapTypeObject, as_sequence.sq_concat),
|
D | typeobject.c | 5021 COPYSEQ(sq_concat); in inherit_slots() 6954 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/cpython2/Include/ |
D | object.h | 277 binaryfunc sq_concat; member
|
/external/python/cpython3/Include/ |
D | object.h | 289 binaryfunc sq_concat; member
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 1212 .. 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
|