Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/data/
Drefcounts.dat2753 PyUnicode_Fill:Py_ssize_t:::
2754 PyUnicode_Fill:PyObject*:unicode:0:
2755 PyUnicode_Fill:Py_ssize_t:start::
2756 PyUnicode_Fill:Py_ssize_t:length::
2757 PyUnicode_Fill:Py_UCS4:fill_char::
/external/python/cpython3/Include/
Dunicodeobject.h660 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/external/python/cpython3/Objects/
Dunicodeobject.c2562 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1) in unicode_fromformat_write_str()
2754 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, fillchar) == -1) in unicode_fromformat_arg()
2760 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, '0') == -1) in unicode_fromformat_arg()
10103 PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length, in PyUnicode_Fill() function
/external/python/cpython3/Modules/
D_testcapimodule.c1931 if (PyUnicode_Fill(to_copy, 0, PyUnicode_GET_LENGTH(to_copy), 0U) < 0) { in unicode_copycharacters()
/external/python/cpython3/Doc/c-api/
Dunicode.rst592 .. c:function:: Py_ssize_t PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, \
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2301 * :c:macro:`Py_UNICODE_FILL`: use :c:func:`PyUnicode_Fill`