Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython2/Include/
Dunicodeobject.h180 # define PyUnicode_EncodeDecimal PyUnicodeUCS2_EncodeDecimal macro
267 # define PyUnicode_EncodeDecimal PyUnicodeUCS4_EncodeDecimal macro
1130 PyAPI_FUNC(int) PyUnicode_EncodeDecimal(
/aosp_15_r20/external/python/cpython2/Objects/
Dcomplexobject.c994 if (PyUnicode_EncodeDecimal(PyUnicode_AS_UNICODE(v), in complex_subtype_from_string()
Dintobject.c412 if (PyUnicode_EncodeDecimal(s, length, buffer, NULL)) { in PyInt_FromUnicode()
Dfloatobject.c196 if (PyUnicode_EncodeDecimal(PyUnicode_AS_UNICODE(v), in PyFloat_FromString()
Dlongobject.c2006 if (PyUnicode_EncodeDecimal(u, length, buffer, NULL)) { in PyLong_FromUnicode()
Dunicodeobject.c5219 int PyUnicode_EncodeDecimal(Py_UNICODE *s, in PyUnicode_EncodeDecimal() function
/aosp_15_r20/external/python/cpython2/Modules/
D_testcapimodule.c1755 res = PyUnicode_EncodeDecimal(unicode, length, in unicode_encodedecimal()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst2693 * :func:`!PyUnicode_EncodeDecimal`
D3.3.rst2322 * :c:func:`PyUnicode_EncodeDecimal`,
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.0a1.rst5085 ``PyUnicode_EncodeDecimal``, ``PyUnicode_EncodeRawUnicodeEscape``,
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY10522 - Issue #13452: PyUnicode_EncodeDecimal() doesn't support error handlers