Searched refs:PyUnicode_Fill (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Modules/_testcapi/ |
D | unicode.c | 23 PyUnicode_Fill(result, 0, size, (Py_UCS4)maxchar) < 0) in unicode_new() 77 filled = PyUnicode_Fill(to_copy, start, length, (Py_UCS4)fill_char); in unicode_fill() 208 if (PyUnicode_Fill(to_copy, 0, PyUnicode_GET_LENGTH(to_copy), 0U) < 0) { in unicode_copycharacters()
|
/external/python/cpython3/Include/cpython/ |
D | unicodeobject.h | 432 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2746 PyUnicode_Fill:Py_ssize_t::: 2747 PyUnicode_Fill:PyObject*:unicode:0: 2748 PyUnicode_Fill:Py_ssize_t:start:: 2749 PyUnicode_Fill:Py_ssize_t:length:: 2750 PyUnicode_Fill:Py_UCS4:fill_char::
|
D | python3.13.abi | 896 …<elf-symbol name='PyUnicode_Fill' type='func-type' binding='global-binding' visibility='default-vi… 10553 …PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='9930' colum…
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 2535 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1) in unicode_fromformat_write_str() 2545 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1) in unicode_fromformat_write_str() 2817 if (PyUnicode_Fill(writer->buffer, writer->pos, spacepad, ' ') == -1) in unicode_fromformat_arg() 2828 if (PyUnicode_Fill(writer->buffer, writer->pos, zeropad, '0') == -1) in unicode_fromformat_arg() 2837 if (PyUnicode_Fill(writer->buffer, writer->pos, spacepad, ' ') == -1) in unicode_fromformat_arg() 9930 PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length, in PyUnicode_Fill() function
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.11.0a2.rst | 1284 (``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead. Patch by
|
/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 638 .. c:function:: Py_ssize_t PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, \
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 2304 * :c:macro:`!Py_UNICODE_FILL()`: use :c:func:`PyUnicode_Fill`
|
D | 3.11.rst | 2652 (``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead.
|