Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dunicodeobject.h170 # define PyUnicode_DecodeUTF32 PyUnicodeUCS2_DecodeUTF32 macro
257 # define PyUnicode_DecodeUTF32 PyUnicodeUCS4_DecodeUTF32 macro
798 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32(
/external/python/cpython3/Include/
Dunicodeobject.h493 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF32(
/external/python/cpython3/PC/
Dpython3.def669 PyUnicode_DecodeUTF32=python39.PyUnicode_DecodeUTF32
/external/python/cpython3/Doc/data/
Drefcounts.dat2560 PyUnicode_DecodeUTF32:PyObject*::+1:
2561 PyUnicode_DecodeUTF32:const char*:s::
2562 PyUnicode_DecodeUTF32:Py_ssize_t:size::
2563 PyUnicode_DecodeUTF32:const char*:errors::
2564 PyUnicode_DecodeUTF32:int*:byteorder::
/external/python/cpython2/Doc/c-api/
Dunicode.rst529 .. c:function:: PyObject* PyUnicode_DecodeUTF32(const char *s, Py_ssize_t size, const char *errors,…
561 If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF32`. If
/external/python/cpython3/Modules/
Darraymodule.c2054 converted_items = PyUnicode_DecodeUTF32( in array__array_reconstructor_impl()
D_tkinter.c442 return PyUnicode_DecodeUTF32((const char *)u, len * 4, in unicodeFromTclObj()
/external/python/cpython3/Doc/c-api/
Dunicode.rst1146 .. c:function:: PyObject* PyUnicode_DecodeUTF32(const char *s, Py_ssize_t size, \
1176 If *consumed* is ``NULL``, behave like :c:func:`PyUnicode_DecodeUTF32`. If
/external/python/pybind11/include/pybind11/
Dcast.h1300 PyUnicode_DecodeUTF32(buffer, nbytes, nullptr, nullptr);
/external/python/cpython3/Objects/
Dunicodeobject.c3442 return PyUnicode_DecodeUTF32(s, size, errors, 0); in PyUnicode_Decode()
5551 PyUnicode_DecodeUTF32(const char *s, in PyUnicode_DecodeUTF32() function
/external/python/cpython2/Objects/
Dunicodeobject.c2260 PyUnicode_DecodeUTF32(const char *s, in PyUnicode_DecodeUTF32() function