Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeCharmap (Results 1 – 20 of 20) sorted by relevance

/aosp_15_r20/external/python/cpython2/Include/
Dunicodeobject.h167 # define PyUnicode_DecodeCharmap PyUnicodeUCS2_DecodeCharmap macro
254 # define PyUnicode_DecodeCharmap PyUnicodeUCS4_DecodeCharmap macro
1035 PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat1619 PyUnicode_DecodeCharmap:PyObject*::+1:
1620 PyUnicode_DecodeCharmap:const char*:s::
1621 PyUnicode_DecodeCharmap:int:size::
1622 PyUnicode_DecodeCharmap:PyObject*:mapping:0:
1623 PyUnicode_DecodeCharmap:const char*:errors::
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dunicodeobject.h673 PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dunicodeobject.h673 PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
/aosp_15_r20/external/python/cpython3/Include/
Dunicodeobject.h673 PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dunicodeobject.h673 PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dunicodeobject.h673 PyAPI_FUNC(PyObject*) PyUnicode_DecodeCharmap(
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat2563 PyUnicode_DecodeCharmap:PyObject*::+1:
2564 PyUnicode_DecodeCharmap:const char*:s::
2565 PyUnicode_DecodeCharmap:Py_ssize_t:size::
2566 PyUnicode_DecodeCharmap:PyObject*:mapping:0:
2567 PyUnicode_DecodeCharmap:const char*:errors::
Dstable_abi.dat727 function,PyUnicode_DecodeCharmap,3.2,,
Dpython3.11.abi789 …<elf-symbol name='PyUnicode_DecodeCharmap' type='func-type' binding='global-binding' visibility='d…
10496PyUnicode_DecodeCharmap' mangled-name='PyUnicode_DecodeCharmap' filepath='Objects/unicodeobject.c'…
/aosp_15_r20/external/python/cpython3/Modules/
D_codecsmodule.c578 decoded = PyUnicode_DecodeCharmap(data->buf, data->len, mapping, errors); in _codecs_charmap_decode_impl()
/aosp_15_r20/external/python/cpython2/Modules/
D_codecsmodule.c567 unicode = PyUnicode_DecodeCharmap(pbuf.buf, pbuf.len, mapping, errors); in charmap_decode()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c645 EXPORT_FUNC(PyUnicode_DecodeCharmap)
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1482 [function.PyUnicode_DecodeCharmap]
DHISTORY19456 - Patch #1313939: PyUnicode_DecodeCharmap() accepts a unicode string as the
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dunicode.rst876 .. c:function:: PyObject* PyUnicode_DecodeCharmap(const char *s, Py_ssize_t size, PyObject *mapping…
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dunicode.rst1313 .. c:function:: PyObject* PyUnicode_DecodeCharmap(const char *data, Py_ssize_t size, \
/aosp_15_r20/external/python/cpython2/Objects/
Dunicodeobject.c4117 PyObject *PyUnicode_DecodeCharmap(const char *s, in PyUnicode_DecodeCharmap() function
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c8327 PyUnicode_DecodeCharmap(const char *s, in PyUnicode_DecodeCharmap() function
/aosp_15_r20/external/python/cpython2/Misc/
DHISTORY2072 - Patch #1313939: PyUnicode_DecodeCharmap() accepts a unicode string as the