Searched refs:PyUnicode_EncodeUTF16 (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Include/ |
D | unicodeobject.h | 184 # define PyUnicode_EncodeUTF16 PyUnicodeUCS2_EncodeUTF16 macro 271 # define PyUnicode_EncodeUTF16 PyUnicodeUCS4_EncodeUTF16 macro 918 PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF16(
|
/external/python/cpython2/Modules/ |
D | _codecsmodule.c | 728 v = codec_tuple(PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(str), in utf_16_encode() 751 v = codec_tuple(PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(str), in utf_16_le_encode() 774 v = codec_tuple(PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(str), in utf_16_be_encode()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1558 PyUnicode_EncodeUTF16:PyObject*::+1: 1559 PyUnicode_EncodeUTF16:const Py_UNICODE*:s:: 1560 PyUnicode_EncodeUTF16:int:size:: 1561 PyUnicode_EncodeUTF16:const char*:errors:: 1562 PyUnicode_EncodeUTF16:int:byteorder::
|
/external/python/cpython2/Modules/_io/ |
D | textio.c | 725 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(text), in utf16be_encode() 733 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(text), in utf16le_encode() 749 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(text), in utf16_encode()
|
/external/python/cpython2/Objects/ |
D | unicodeobject.c | 2711 PyUnicode_EncodeUTF16(const Py_UNICODE *s, in PyUnicode_EncodeUTF16() function 2795 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(unicode), in PyUnicode_AsUTF16String()
|
/external/python/cpython2/Doc/c-api/ |
D | unicode.rst | 652 .. c:function:: PyObject* PyUnicode_EncodeUTF16(const Py_UNICODE *s, Py_ssize_t size, const char *e…
|