Home
last modified time | relevance | path

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

/third_party/python/Include/
Dunicodeobject.h580 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16(
/third_party/python/Doc/data/
Drefcounts.dat2522 PyUnicode_DecodeUTF16:PyObject*::+1:
2523 PyUnicode_DecodeUTF16:const char*:s::
2524 PyUnicode_DecodeUTF16:Py_ssize_t:size::
2525 PyUnicode_DecodeUTF16:const char*:errors::
2526 PyUnicode_DecodeUTF16:int*:byteorder::
Dstable_abi.dat717 function,PyUnicode_DecodeUTF16,3.2,
/third_party/python/PC/
Dpython3dll.c643 EXPORT_FUNC(PyUnicode_DecodeUTF16)
/third_party/python/Misc/
Dstable_abi.txt1400 function PyUnicode_DecodeUTF16
/third_party/python/Doc/c-api/
Dunicode.rst1208 .. c:function:: PyObject* PyUnicode_DecodeUTF16(const char *s, Py_ssize_t size, \
1239 If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF16`. If
/third_party/python/Modules/
Darraymodule.c2087 converted_items = PyUnicode_DecodeUTF16( in array__array_reconstructor_impl()
D_tkinter.c496 return PyUnicode_DecodeUTF16((const char *)u, len * 2, in unicodeFromTclObj()
/third_party/python/Objects/
Dunicodeobject.c3637 return PyUnicode_DecodeUTF16(s, size, errors, 0); in PyUnicode_Decode()
6073 PyUnicode_DecodeUTF16(const char *s, in PyUnicode_DecodeUTF16() function