Searched refs:PyUnicode_EncodeUTF16 (Results 1 – 11 of 11) 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/cpython3/Doc/data/ |
D | refcounts.dat | 2510 PyUnicode_EncodeUTF16:PyObject*::+1: 2511 PyUnicode_EncodeUTF16:const Py_UNICODE*:s:: 2512 PyUnicode_EncodeUTF16:Py_ssize_t:size:: 2513 PyUnicode_EncodeUTF16:const char*:errors:: 2514 PyUnicode_EncodeUTF16:int:byteorder::
|
/external/python/cpython2/Modules/_io/ |
D | textio.c | 727 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(text), in utf16be_encode() 735 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(text), in utf16le_encode() 751 return PyUnicode_EncodeUTF16(PyUnicode_AS_UNICODE(text), in utf16_encode()
|
/external/python/cpython3/Include/ |
D | unicodeobject.h | 1480 PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF16(
|
/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…
|
/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 1236 .. c:function:: PyObject* PyUnicode_EncodeUTF16(const Py_UNICODE *s, Py_ssize_t size, \
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 2311 * :c:func:`PyUnicode_EncodeUTF16`
|
/external/python/cpython3/Objects/ |
D | unicodeobject.c | 5889 PyUnicode_EncodeUTF16(const Py_UNICODE *s, in PyUnicode_EncodeUTF16() function
|