Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dunicodeobject.h172 # define PyUnicode_DecodeUTF16 PyUnicodeUCS2_DecodeUTF16 macro
259 # define PyUnicode_DecodeUTF16 PyUnicodeUCS4_DecodeUTF16 macro
872 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16(
/external/python/cpython2/Doc/data/
Drefcounts.dat1552 PyUnicode_DecodeUTF16:PyObject*::+1:
1553 PyUnicode_DecodeUTF16:const char*:s::
1554 PyUnicode_DecodeUTF16:int:size::
1555 PyUnicode_DecodeUTF16:const char*:errors::
1556 PyUnicode_DecodeUTF16:int*:byteorder::
/external/python/cpython3/Doc/data/
Drefcounts.dat2504 PyUnicode_DecodeUTF16:PyObject*::+1:
2505 PyUnicode_DecodeUTF16:const char*:s::
2506 PyUnicode_DecodeUTF16:Py_ssize_t:size::
2507 PyUnicode_DecodeUTF16:const char*:errors::
2508 PyUnicode_DecodeUTF16:int*:byteorder::
/external/python/cpython3/PC/
Dpython3.def667 PyUnicode_DecodeUTF16=python37.PyUnicode_DecodeUTF16
/external/python/cpython3/Include/
Dunicodeobject.h1433 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF16(
/external/python/cpython2/Doc/c-api/
Dunicode.rst605 .. c:function:: PyObject* PyUnicode_DecodeUTF16(const char *s, Py_ssize_t size, const char *errors,…
638 If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF16`. If
/external/python/cpython3/Modules/
Darraymodule.c2077 converted_items = PyUnicode_DecodeUTF16( in array__array_reconstructor_impl()
/external/python/cpython3/Doc/c-api/
Dunicode.rst1191 .. c:function:: PyObject* PyUnicode_DecodeUTF16(const char *s, Py_ssize_t size, \
1222 If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF16`. If
/external/python/cpython3/Objects/
Dunicodeobject.c3205 return PyUnicode_DecodeUTF16(s, size, errors, 0); in PyUnicode_Decode()
5559 PyUnicode_DecodeUTF16(const char *s, in PyUnicode_DecodeUTF16() function
/external/python/cpython2/Objects/
Dunicodeobject.c2533 PyUnicode_DecodeUTF16(const char *s, in PyUnicode_DecodeUTF16() function