Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_codecsmodule.c406 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_decode_impl()
428 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_le_decode_impl()
450 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_be_decode_impl()
478 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_ex_decode_impl()
/external/python/cpython2/Modules/
D_codecsmodule.c397 decoded = PyUnicode_DecodeUTF32Stateful(pbuf.buf, pbuf.len, errors, in utf_32_decode()
420 decoded = PyUnicode_DecodeUTF32Stateful(pbuf.buf, pbuf.len, errors, in utf_32_le_decode()
443 decoded = PyUnicode_DecodeUTF32Stateful(pbuf.buf, pbuf.len, errors, in utf_32_be_decode()
474 unicode = PyUnicode_DecodeUTF32Stateful(pbuf.buf, pbuf.len, errors, in utf_32_ex_decode()
/external/python/cpython2/Include/
Dunicodeobject.h171 # define PyUnicode_DecodeUTF32Stateful PyUnicodeUCS2_DecodeUTF32Stateful macro
258 # define PyUnicode_DecodeUTF32Stateful PyUnicodeUCS4_DecodeUTF32Stateful macro
807 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32Stateful(
/external/python/cpython3/Include/
Dunicodeobject.h502 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32Stateful(
/external/python/cpython3/Doc/data/
Drefcounts.dat2566 PyUnicode_DecodeUTF32Stateful:PyObject*::+1:
2567 PyUnicode_DecodeUTF32Stateful:const char*:s::
2568 PyUnicode_DecodeUTF32Stateful:Py_ssize_t:size::
2569 PyUnicode_DecodeUTF32Stateful:const char*:errors::
2570 PyUnicode_DecodeUTF32Stateful:int*:byteorder::
2571 PyUnicode_DecodeUTF32Stateful:Py_ssize_t*:consumed::
/external/python/cpython3/PC/
Dpython3.def670 PyUnicode_DecodeUTF32Stateful=python39.PyUnicode_DecodeUTF32Stateful
/external/python/cpython2/Doc/c-api/
Dunicode.rst559 .. c:function:: PyObject* PyUnicode_DecodeUTF32Stateful(const char *s, Py_ssize_t size, const char …
562 *consumed* is not *NULL*, :c:func:`PyUnicode_DecodeUTF32Stateful` will not treat
/external/python/cpython3/Doc/c-api/
Dunicode.rst1173 .. c:function:: PyObject* PyUnicode_DecodeUTF32Stateful(const char *s, Py_ssize_t size, \
1177 *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF32Stateful` will not treat
/external/python/cpython2/Objects/
Dunicodeobject.c2265 return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL); in PyUnicode_DecodeUTF32()
2269 PyUnicode_DecodeUTF32Stateful(const char *s, in PyUnicode_DecodeUTF32Stateful() function
/external/python/cpython3/Objects/
Dunicodeobject.c5556 return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL); in PyUnicode_DecodeUTF32()
5560 PyUnicode_DecodeUTF32Stateful(const char *s, in PyUnicode_DecodeUTF32Stateful() function