Home
last modified time | relevance | path

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

/third_party/python/Parser/
Dstring_parser.c266 *result = PyUnicode_DecodeUTF8Stateful(s, len, NULL, NULL); in _PyPegen_parsestr()
491 *literal = PyUnicode_DecodeUTF8Stateful(literal_start, in fstring_find_literal()
/third_party/python/Include/
Dunicodeobject.h460 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8Stateful(
/third_party/python/Modules/
D_codecsmodule.c288 PyObject *decoded = PyUnicode_DecodeUTF8Stateful(data->buf, data->len, in _codecs_utf_8_decode_impl()
/third_party/python/Doc/data/
Drefcounts.dat2467 PyUnicode_DecodeUTF8Stateful:PyObject*::+1:
2468 PyUnicode_DecodeUTF8Stateful:const char*:s::
2469 PyUnicode_DecodeUTF8Stateful:Py_ssize_t:size::
2470 PyUnicode_DecodeUTF8Stateful:const char*:errors::
2471 PyUnicode_DecodeUTF8Stateful:Py_ssize_t*:consumed::
Dstable_abi.dat724 function,PyUnicode_DecodeUTF8Stateful,3.2,
/third_party/python/PC/
Dpython3dll.c650 EXPORT_FUNC(PyUnicode_DecodeUTF8Stateful)
/third_party/python/Objects/
Dunicodeobject.c2309 return PyUnicode_DecodeUTF8Stateful(u, size, NULL, NULL); in PyUnicode_FromStringAndSize()
2331 return PyUnicode_DecodeUTF8Stateful(u, (Py_ssize_t)size, NULL, NULL); in PyUnicode_FromString()
2368 obj = PyUnicode_DecodeUTF8Stateful(id->string, strlen(id->string), in _PyUnicode_FromId()
2831 unicode = PyUnicode_DecodeUTF8Stateful(str, length, "replace", NULL); in unicode_fromformat_write_cstr()
3618 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); in PyUnicode_Decode()
3634 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); in PyUnicode_Decode()
5097 return PyUnicode_DecodeUTF8Stateful(s, size, errors, NULL); in PyUnicode_DecodeUTF8()
5328 PyUnicode_DecodeUTF8Stateful(const char *s, in PyUnicode_DecodeUTF8Stateful() function
/third_party/python/Misc/
Dstable_abi.txt1410 function PyUnicode_DecodeUTF8Stateful
DHISTORY19838 - SF patch #998993: ``PyUnicode_DecodeUTF8Stateful`` and
/third_party/python/Doc/c-api/
Dunicode.rst1067 .. c:function:: PyObject* PyUnicode_DecodeUTF8Stateful(const char *s, Py_ssize_t size, \