Home
last modified time | relevance | path

Searched refs:PyUnicode_TranslateCharmap (Results 1 – 8 of 8) sorted by relevance

/aosp_15_r20/external/python/cpython2/Include/
Dunicodeobject.h213 # define PyUnicode_TranslateCharmap PyUnicodeUCS2_TranslateCharmap macro
300 # define PyUnicode_TranslateCharmap PyUnicodeUCS4_TranslateCharmap macro
1070 PyAPI_FUNC(PyObject *) PyUnicode_TranslateCharmap(
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat1635 PyUnicode_TranslateCharmap:PyObject*::+1:
1636 PyUnicode_TranslateCharmap:const Py_UNICODE*:s::
1637 PyUnicode_TranslateCharmap:int:size::
1638 PyUnicode_TranslateCharmap:PyObject*:table:0:
1639 PyUnicode_TranslateCharmap:const char*:errors::
/aosp_15_r20/external/python/cpython2/Objects/
Dunicodeobject.c5053 PyObject *PyUnicode_TranslateCharmap(const Py_UNICODE *p, in PyUnicode_TranslateCharmap() function
5205 result = PyUnicode_TranslateCharmap(PyUnicode_AS_UNICODE(str), in PyUnicode_Translate()
7679 return PyUnicode_TranslateCharmap(self->str, in unicode_translate()
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dunicode.rst913 .. c:function:: PyObject* PyUnicode_TranslateCharmap(const Py_UNICODE *s, Py_ssize_t size, PyObject…
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst2692 * :func:`!PyUnicode_TranslateCharmap`
D3.3.rst2319 * :c:func:`PyUnicode_TranslateCharmap`
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.0a1.rst5087 ``PyUnicode_TransformDecimalToASCII``, ``PyUnicode_TranslateCharmap``,
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY6506 - Issue #15900: Fix reference leak in `PyUnicode_TranslateCharmap()`.