Searched refs:sq_concat (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Objects/ |
D | abstract.c | 1078 if (m && m->sq_concat) { in PyNumber_Add() 1079 result = (*m->sq_concat)(v, w); in PyNumber_Add() 1272 func = m->sq_concat; in PyNumber_InPlaceAdd() 1768 if (m && m->sq_concat) { in PySequence_Concat() 1769 PyObject *res = m->sq_concat(s, o); in PySequence_Concat() 1830 if (m && m->sq_concat) { in PySequence_InPlaceConcat() 1831 PyObject *res = m->sq_concat(s, o); in PySequence_InPlaceConcat()
|
D | typeslots.inc | 41 {offsetof(PySequenceMethods, sq_concat), offsetof(PyTypeObject, tp_as_sequence)},
|
D | typeobject.c | 5836 COPYSEQ(sq_concat); in inherit_slots() 8069 SQSLOT("__add__", sq_concat, NULL, wrap_binaryfunc,
|
/third_party/python/Include/cpython/ |
D | object.h | 153 binaryfunc sq_concat; member
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 303 …| :c:member:`~PySequenceMethods.sq_concat` | :c:type:`binaryfunc` | __… 2247 .. c:member:: binaryfunc PySequenceMethods.sq_concat
|
/third_party/python/Misc/ |
D | HISTORY | 22656 - The sq_repeat, sq_inplace_repeat, sq_concat and sq_inplace_concat
|