Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeUTF32 (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Include/
Dunicodeobject.h513 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32(
/third_party/python/Doc/data/
Drefcounts.dat2537 PyUnicode_DecodeUTF32:PyObject*::+1:
2538 PyUnicode_DecodeUTF32:const char*:s::
2539 PyUnicode_DecodeUTF32:Py_ssize_t:size::
2540 PyUnicode_DecodeUTF32:const char*:errors::
2541 PyUnicode_DecodeUTF32:int*:byteorder::
Dstable_abi.dat719 function,PyUnicode_DecodeUTF32,3.2,
/third_party/python/PC/
Dpython3dll.c645 EXPORT_FUNC(PyUnicode_DecodeUTF32)
/third_party/python/Misc/
Dstable_abi.txt1404 function PyUnicode_DecodeUTF32
/third_party/python/Doc/c-api/
Dunicode.rst1135 .. c:function:: PyObject* PyUnicode_DecodeUTF32(const char *s, Py_ssize_t size, \
1165 If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF32`. If
/third_party/python/Modules/
Darraymodule.c2097 converted_items = PyUnicode_DecodeUTF32( in array__array_reconstructor_impl()
D_tkinter.c499 return PyUnicode_DecodeUTF32((const char *)u, len * 4, in unicodeFromTclObj()
/third_party/python/Objects/
Dunicodeobject.c3640 return PyUnicode_DecodeUTF32(s, size, errors, 0); in PyUnicode_Decode()
5749 PyUnicode_DecodeUTF32(const char *s, in PyUnicode_DecodeUTF32() function