Home
last modified time | relevance | path

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

/third_party/python/Include/
Dunicodeobject.h698 PyAPI_FUNC(PyObject*) PyUnicode_DecodeMBCSStateful(
/third_party/python/Modules/
D_codecsmodule.c598 PyObject *decoded = PyUnicode_DecodeMBCSStateful(data->buf, data->len, in _codecs_mbcs_decode_impl()
/third_party/python/Doc/data/
Drefcounts.dat2636 PyUnicode_DecodeMBCSStateful:PyObject*::+1:
2637 PyUnicode_DecodeMBCSStateful:const char*:s::
2638 PyUnicode_DecodeMBCSStateful:Py_ssize_t:size::
2639 PyUnicode_DecodeMBCSStateful:const char*:errors::
2640 PyUnicode_DecodeMBCSStateful:Py_ssize_t*:consumed::
Dstable_abi.dat715 function,PyUnicode_DecodeMBCSStateful,3.7,on Windows
/third_party/python/PC/
Dpython3dll.c640 EXPORT_FUNC(PyUnicode_DecodeMBCSStateful)
/third_party/python/Misc/
Dstable_abi.txt1973 function PyUnicode_DecodeMBCSStateful
/third_party/python/Doc/c-api/
Dunicode.rst1539 .. c:function:: PyObject* PyUnicode_DecodeMBCSStateful(const char *s, Py_ssize_t size, \
1543 *consumed* is not ``NULL``, :c:func:`PyUnicode_DecodeMBCSStateful` will not decode
/third_party/python/Objects/
Dunicodeobject.c7838 PyUnicode_DecodeMBCSStateful(const char *s, in PyUnicode_DecodeMBCSStateful() function
7851 return PyUnicode_DecodeMBCSStateful(s, size, errors, NULL); in PyUnicode_DecodeMBCS()