Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dunicodeobject.h526 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/external/python/cpython3/Doc/data/
Drefcounts.dat2794 PyUnicode_Fill:Py_ssize_t:::
2795 PyUnicode_Fill:PyObject*:unicode:0:
2796 PyUnicode_Fill:Py_ssize_t:start::
2797 PyUnicode_Fill:Py_ssize_t:length::
2798 PyUnicode_Fill:Py_UCS4:fill_char::
/external/python/cpython3/Objects/
Dunicodeobject.c2701 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1) in unicode_fromformat_write_str()
2893 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, fillchar) == -1) in unicode_fromformat_arg()
2899 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, '0') == -1) in unicode_fromformat_arg()
10307 PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length, in PyUnicode_Fill() function
/external/python/cpython3/Doc/c-api/
Dunicode.rst608 .. c:function:: Py_ssize_t PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, \
/external/python/cpython3/Modules/
D_testcapimodule.c2013 if (PyUnicode_Fill(to_copy, 0, PyUnicode_GET_LENGTH(to_copy), 0U) < 0) { in unicode_copycharacters()
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2301 * :c:macro:`Py_UNICODE_FILL`: use :c:func:`PyUnicode_Fill`