Home
last modified time | relevance | path

Searched refs:PyUnicode_EncodeUTF32 (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dunicodeobject.h183 # define PyUnicode_EncodeUTF32 PyUnicodeUCS2_EncodeUTF32 macro
270 # define PyUnicode_EncodeUTF32 PyUnicodeUCS4_EncodeUTF32 macro
840 PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF32(
/external/python/cpython2/Modules/
D_codecsmodule.c805 v = codec_tuple(PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(str), in utf_32_encode()
828 v = codec_tuple(PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(str), in utf_32_le_encode()
851 v = codec_tuple(PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(str), in utf_32_be_encode()
/external/python/cpython3/Doc/data/
Drefcounts.dat2553 PyUnicode_EncodeUTF32:PyObject*::+1:
2554 PyUnicode_EncodeUTF32:const Py_UNICODE*:s::
2555 PyUnicode_EncodeUTF32:Py_ssize_t:size::
2556 PyUnicode_EncodeUTF32:const char*:errors::
2557 PyUnicode_EncodeUTF32:int:byteorder::
Dpython3.10.abi794 …<elf-symbol name='PyUnicode_EncodeUTF32' type='func-type' binding='global-binding' visibility='def…
11283PyUnicode_EncodeUTF32' mangled-name='PyUnicode_EncodeUTF32' filepath='Objects/unicodeobject.c' lin…
/external/python/cpython2/Modules/_io/
Dtextio.c759 return PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(text), in utf32be_encode()
767 return PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(text), in utf32le_encode()
783 return PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(text), in utf32_encode()
/external/python/cpython3/Include/cpython/
Dunicodeobject.h788 Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_EncodeUTF32(
/external/python/cpython2/Objects/
Dunicodeobject.c2434 PyUnicode_EncodeUTF32(const Py_UNICODE *s, in PyUnicode_EncodeUTF32() function
2524 return PyUnicode_EncodeUTF32(PyUnicode_AS_UNICODE(unicode), in PyUnicode_AsUTF32String()
/external/python/cpython2/Doc/c-api/
Dunicode.rst570 .. c:function:: PyObject* PyUnicode_EncodeUTF32(const Py_UNICODE *s, Py_ssize_t size, const char *e…
/external/python/cpython3/Doc/c-api/
Dunicode.rst1179 .. c:function:: PyObject* PyUnicode_EncodeUTF32(const Py_UNICODE *s, Py_ssize_t size, \
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2310 * :c:func:`PyUnicode_EncodeUTF32`
/external/python/cpython3/Objects/
Dunicodeobject.c6050 PyUnicode_EncodeUTF32(const Py_UNICODE *s, in PyUnicode_EncodeUTF32() function