Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_codecsmodule.c408 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_decode_impl()
430 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_le_decode_impl()
452 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_be_decode_impl()
480 PyObject *decoded = PyUnicode_DecodeUTF32Stateful(data->buf, data->len, in _codecs_utf_32_ex_decode_impl()
/third_party/python/Include/
Dunicodeobject.h522 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32Stateful(
/third_party/python/Doc/data/
Drefcounts.dat2543 PyUnicode_DecodeUTF32Stateful:PyObject*::+1:
2544 PyUnicode_DecodeUTF32Stateful:const char*:s::
2545 PyUnicode_DecodeUTF32Stateful:Py_ssize_t:size::
2546 PyUnicode_DecodeUTF32Stateful:const char*:errors::
2547 PyUnicode_DecodeUTF32Stateful:int*:byteorder::
2548 PyUnicode_DecodeUTF32Stateful:Py_ssize_t*:consumed::
Dstable_abi.dat720 function,PyUnicode_DecodeUTF32Stateful,3.2,
/third_party/python/PC/
Dpython3dll.c646 EXPORT_FUNC(PyUnicode_DecodeUTF32Stateful)
/third_party/python/Misc/
Dstable_abi.txt1406 function PyUnicode_DecodeUTF32Stateful
/third_party/python/Doc/c-api/
Dunicode.rst1162 .. c:function:: PyObject* PyUnicode_DecodeUTF32Stateful(const char *s, Py_ssize_t size, \
1166 *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeUTF32Stateful` will not treat
/third_party/python/Objects/
Dunicodeobject.c5754 return PyUnicode_DecodeUTF32Stateful(s, size, errors, byteorder, NULL); in PyUnicode_DecodeUTF32()
5758 PyUnicode_DecodeUTF32Stateful(const char *s, in PyUnicode_DecodeUTF32Stateful() function