Home
last modified time | relevance | path

Searched refs:PyUnicode_Fill (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Modules/_testcapi/
Dunicode.c23 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/
Dunicodeobject.h432 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/external/python/cpython3/Doc/data/
Drefcounts.dat2746 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::
Dpython3.13.abi896 …<elf-symbol name='PyUnicode_Fill' type='func-type' binding='global-binding' visibility='default-vi…
10553PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='9930' colum…
/external/python/cpython3/Objects/
Dunicodeobject.c2535 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/
D3.11.0a2.rst1284 (``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead. Patch by
/external/python/cpython3/Doc/c-api/
Dunicode.rst638 .. c:function:: Py_ssize_t PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, \
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2304 * :c:macro:`!Py_UNICODE_FILL()`: use :c:func:`PyUnicode_Fill`
D3.11.rst2652 (``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead.