Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_localemodule.c109 result_object = PyUnicode_DecodeLocale(result, NULL); in PyLocale_setlocale()
119 result_object = PyUnicode_DecodeLocale(result, NULL); in PyLocale_setlocale()
173 obj = PyUnicode_DecodeLocale(lc->ATTR, NULL); \ in locale_decode_monetary()
234 x = PyUnicode_DecodeLocale(l->s, NULL); \ in PyLocale_localeconv()
555 return PyUnicode_DecodeLocale(result, NULL); in PyLocale_nl_langinfo()
574 return PyUnicode_DecodeLocale(gettext(in), NULL); in PyIntl_gettext()
587 return PyUnicode_DecodeLocale(dgettext(domain, in), NULL); in PyIntl_dgettext()
601 return PyUnicode_DecodeLocale(dcgettext(domain,msgid,category), NULL); in PyIntl_dcgettext()
619 return PyUnicode_DecodeLocale(domain, NULL); in PyIntl_textdomain()
651 result = PyUnicode_DecodeLocale(current_dirname, NULL); in PyIntl_bindtextdomain()
[all …]
Dtimemodule.c438 PyUnicode_DecodeLocale(p->tm_zone, "surrogateescape")); in tmtotuple()
442 PyUnicode_DecodeLocale(zone, "surrogateescape")); in tmtotuple()
1574 otz0 = PyUnicode_DecodeLocale(_Py_tzname[0], "surrogateescape"); in init_timezone()
1578 otz1 = PyUnicode_DecodeLocale(_Py_tzname[1], "surrogateescape"); in init_timezone()
Dreadline.c141 return PyUnicode_DecodeLocale(s, "surrogateescape"); in decode()
D_datetimemodule.c5701 nameo = PyUnicode_DecodeLocale(zone, "surrogateescape"); in local_timezone_from_timestamp()
Dposixmodule.c9365 return PyUnicode_DecodeLocale(message, "surrogateescape"); in os_strerror_impl()
/external/python/cpython3/Python/
Dfileutils.c1841 *decimal_point = PyUnicode_DecodeLocale(lc->decimal_point, NULL); in _Py_GetLocaleconvNumeric()
1847 *thousands_sep = PyUnicode_DecodeLocale(lc->thousands_sep, NULL); in _Py_GetLocaleconvNumeric()
Derrors.c504 message = PyUnicode_DecodeLocale(s, "surrogateescape"); in PyErr_SetFromErrnoWithFilenameObjects()
/external/python/cpython3/PC/
Dpython3.def662 PyUnicode_DecodeLocale=python37.PyUnicode_DecodeLocale
/external/python/cpython3/Include/
Dunicodeobject.h1800 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/external/python/cpython3/Doc/data/
Drefcounts.dat2805 PyUnicode_DecodeLocale:PyObject*::+1:
2806 PyUnicode_DecodeLocale:const char*:str::
2807 PyUnicode_DecodeLocale:const char*:errors::
/external/python/cpython3/Doc/c-api/
Dunicode.rst789 .. c:function:: PyObject* PyUnicode_DecodeLocale(const char *str, const char *errors)
/external/python/cpython3/Objects/
Dunicodeobject.c3656 PyUnicode_DecodeLocale(const char *str, const char *errors) in PyUnicode_DecodeLocale() function
/external/python/cpython3/Misc/
DHISTORY10526 - Issue #13560: Add PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize()