Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeLocale (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Modules/
D_localemodule.c122 result_object = PyUnicode_DecodeLocale(result, NULL); in PyLocale_setlocale()
133 result_object = PyUnicode_DecodeLocale(result, NULL); in PyLocale_setlocale()
183 #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) in locale_decode_monetary()
260 #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) in PyLocale_localeconv()
585 return PyUnicode_DecodeLocale(result, NULL); in PyLocale_nl_langinfo()
604 return PyUnicode_DecodeLocale(gettext(in), NULL); in PyIntl_gettext()
617 return PyUnicode_DecodeLocale(dgettext(domain, in), NULL); in PyIntl_dgettext()
631 return PyUnicode_DecodeLocale(dcgettext(domain,msgid,category), NULL); in PyIntl_dcgettext()
649 return PyUnicode_DecodeLocale(domain, NULL); in PyIntl_textdomain()
683 result = PyUnicode_DecodeLocale(current_dirname, NULL); in PyIntl_bindtextdomain()
[all …]
Dtimemodule.c432 PyUnicode_DecodeLocale(p->tm_zone, "surrogateescape"));
436 PyUnicode_DecodeLocale(zone, "surrogateescape"));
1703 otz0 = PyUnicode_DecodeLocale(_Py_tzname[0], "surrogateescape");
1707 otz1 = PyUnicode_DecodeLocale(_Py_tzname[1], "surrogateescape");
Dreadline.c145 return PyUnicode_DecodeLocale(s, "surrogateescape"); in decode()
D_datetimemodule.c5940 nameo = PyUnicode_DecodeLocale(zone, "surrogateescape"); in local_timezone_from_timestamp()
Dposixmodule.c10883 return PyUnicode_DecodeLocale(message, "surrogateescape"); in os_strerror_impl()
/external/python/cpython3/Python/
Ddynload_shlib.c109 error_ob = PyUnicode_DecodeLocale(error, "surrogateescape"); in _PyImport_FindSharedFuncptr()
Dfileutils.c2074 #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) in _Py_GetLocaleconvNumeric()
Derrors.c687 message = PyUnicode_DecodeLocale(s, "surrogateescape"); in PyErr_SetFromErrnoWithFilenameObjects()
/external/python/cpython3/Include/
Dunicodeobject.h728 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/external/python/cpython3/PC/
Dpython3.def662 PyUnicode_DecodeLocale=python39.PyUnicode_DecodeLocale
/external/python/cpython3/Doc/data/
Drefcounts.dat2846 PyUnicode_DecodeLocale:PyObject*::+1:
2847 PyUnicode_DecodeLocale:const char*:str::
2848 PyUnicode_DecodeLocale:const char*:errors::
/external/python/cpython3/Doc/c-api/
Dunicode.rst817 .. c:function:: PyObject* PyUnicode_DecodeLocale(const char *str, const char *errors)
/external/python/cpython3/Objects/
Dunicodeobject.c3880 PyUnicode_DecodeLocale(const char *str, const char *errors) in PyUnicode_DecodeLocale() function
/external/python/cpython3/Misc/
DHISTORY10526 - Issue #13560: Add PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize()