Searched refs:sq_inplace_repeat (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Objects/ |
D | typeslots.inc | 44 offsetof(PyHeapTypeObject, as_sequence.sq_inplace_repeat),
|
D | abstract.c | 1200 f = mv->sq_inplace_repeat; in PyNumber_InPlaceMultiply() 1719 if (m && m->sq_inplace_repeat) in PySequence_InPlaceRepeat() 1720 return m->sq_inplace_repeat(o, count); in PySequence_InPlaceRepeat()
|
D | typeobject.c | 5262 COPYSEQ(sq_inplace_repeat); in inherit_slots() 7303 SQSLOT("__imul__", sq_inplace_repeat, NULL,
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 169 ssizeargfunc sq_inplace_repeat; member
|
/external/python/cpython2/Include/ |
D | object.h | 286 ssizeargfunc sq_inplace_repeat; member
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1370 f = mv->sq_inplace_repeat; 1965 if (m && HASINPLACE(o) && m->sq_inplace_repeat) 1966 return m->sq_inplace_repeat(o, count);
|
D | typeobject.c | 4015 COPYSEQ(sq_inplace_repeat); 6225 SQSLOT("__imul__", sq_inplace_repeat, NULL,
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 475 :attr:`sq_inplace_repeat`. 1324 .. c:member:: ssizeargfunc PySequenceMethods.sq_inplace_repeat
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 314 …| :c:member:`~PySequenceMethods.sq_inplace_repeat` | :c:type:`ssizeargfunc` | __… 2181 .. c:member:: ssizeargfunc PySequenceMethods.sq_inplace_repeat
|
/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
|