Home
last modified time | relevance | path

Searched refs:PyUnicode_AsUCS4 (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Modules/_io/
Dstringio.c164 if (!PyUnicode_AsUCS4(intermediate, self->buf, len, 0)) { in realize()
249 if (!PyUnicode_AsUCS4(decoded, in write_str()
/external/python/cpython3/Modules/
Dzipimport.c268 if (!PyUnicode_AsUCS4(prefix, p, len, 0)) { in make_filename()
274 if (!PyUnicode_AsUCS4(name, p, len, 1)) { in make_filename()
D_winapi.c786 if (!PyUnicode_AsUCS4(key, p, end - p, 0)) in getenvironment()
790 if (!PyUnicode_AsUCS4(value, p, end - p, 0)) in getenvironment()
D_testcapimodule.c1885 if (!PyUnicode_AsUCS4(unicode, buffer, buf_len, copy_null)) { in unicode_asucs4()
/external/python/cpython3/Doc/data/
Drefcounts.dat2791 PyUnicode_AsUCS4:Py_UCS4*:::
2792 PyUnicode_AsUCS4:PyObject*:u:0:
2793 PyUnicode_AsUCS4:Py_UCS4*:buffer::
2794 PyUnicode_AsUCS4:Py_ssize_t:buflen::
2795 PyUnicode_AsUCS4:int:copy_null::
/external/python/cpython3/PC/
Dpython3.def640 PyUnicode_AsUCS4=python37.PyUnicode_AsUCS4
/external/python/cpython3/Include/
Dunicodeobject.h743 PyAPI_FUNC(Py_UCS4*) PyUnicode_AsUCS4(
/external/python/cpython3/Doc/c-api/
Dunicode.rst639 .. c:function:: Py_UCS4* PyUnicode_AsUCS4(PyObject *u, Py_UCS4 *buffer, \
699 Please migrate to using :c:func:`PyUnicode_AsUCS4`,
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2194 * :c:func:`PyUnicode_AsUCS4`, :c:func:`PyUnicode_AsUCS4Copy`
/external/python/cpython3/Objects/
Dunicodeobject.c2512 PyUnicode_AsUCS4(PyObject *string, Py_UCS4 *target, Py_ssize_t targetsize, in PyUnicode_AsUCS4() function