Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat2708 PyUnicode_Fill:Py_ssize_t:::
2709 PyUnicode_Fill:PyObject*:unicode:0:
2710 PyUnicode_Fill:Py_ssize_t:start::
2711 PyUnicode_Fill:Py_ssize_t:length::
2712 PyUnicode_Fill:Py_UCS4:fill_char::
Dpython3.11.abi809 …<elf-symbol name='PyUnicode_Fill' type='func-type' binding='global-binding' visibility='default-vi…
10402PyUnicode_Fill' mangled-name='PyUnicode_Fill' filepath='Objects/unicodeobject.c' line='10249' colu…
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dunicodeobject.h553 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dunicodeobject.h553 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dunicodeobject.h553 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dunicodeobject.h553 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dunicodeobject.h553 PyAPI_FUNC(Py_ssize_t) PyUnicode_Fill(
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.0a2.rst1284 (``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead. Patch by
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c2748 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, ' ') == -1) in unicode_fromformat_write_str()
2940 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, fillchar) == -1) in unicode_fromformat_arg()
2946 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, '0') == -1) in unicode_fromformat_arg()
10249 PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, Py_ssize_t length, in PyUnicode_Fill() function
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dunicode.rst623 .. c:function:: Py_ssize_t PyUnicode_Fill(PyObject *unicode, Py_ssize_t start, \
/aosp_15_r20/external/python/cpython3/Modules/
D_testcapimodule.c2346 if (PyUnicode_Fill(to_copy, 0, PyUnicode_GET_LENGTH(to_copy), 0U) < 0) { in unicode_copycharacters()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst2635 (``wchar_t*`` string), and ``PyUnicode_Fill()`` functions instead.
D3.3.rst2301 * :c:macro:`Py_UNICODE_FILL`: use :c:func:`PyUnicode_Fill`