Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_localemodule.c133 result_object = PyUnicode_DecodeLocale(result, NULL); in _locale_setlocale_impl()
144 result_object = PyUnicode_DecodeLocale(result, NULL); in _locale_setlocale_impl()
194 #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) in locale_decode_monetary()
275 #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) in _locale_localeconv_impl()
619 return PyUnicode_DecodeLocale(result, NULL); in _locale_nl_langinfo_impl()
643 return PyUnicode_DecodeLocale(gettext(in), NULL); in _locale_gettext_impl()
662 return PyUnicode_DecodeLocale(dgettext(domain, in), NULL); in _locale_dgettext_impl()
681 return PyUnicode_DecodeLocale(dcgettext(domain,msgid,category), NULL); in _locale_dcgettext_impl()
702 return PyUnicode_DecodeLocale(domain, NULL); in _locale_textdomain_impl()
742 result = PyUnicode_DecodeLocale(current_dirname, NULL); in _locale_bindtextdomain_impl()
[all …]
Dtimemodule.c437 PyUnicode_DecodeLocale(p->tm_zone, "surrogateescape"));
441 PyUnicode_DecodeLocale(zone, "surrogateescape"));
1740 otz0 = PyUnicode_DecodeLocale(_Py_tzname[0], "surrogateescape");
1744 otz1 = PyUnicode_DecodeLocale(_Py_tzname[1], "surrogateescape");
Dreadline.c155 return PyUnicode_DecodeLocale(s, "surrogateescape"); in decode()
D_datetimemodule.c5931 nameo = PyUnicode_DecodeLocale(zone, "surrogateescape"); in local_timezone_from_timestamp()
Dposixmodule.c11044 return PyUnicode_DecodeLocale(message, "surrogateescape"); in os_strerror_impl()
/third_party/python/Python/
Ddynload_shlib.c109 error_ob = PyUnicode_DecodeLocale(error, "surrogateescape"); in _PyImport_FindSharedFuncptr()
Derrors.c717 message = PyUnicode_DecodeLocale(s, "surrogateescape"); in PyErr_SetFromErrnoWithFilenameObjects()
Dfileutils.c2322 #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) in _Py_GetLocaleconvNumeric()
/third_party/python/Include/
Dunicodeobject.h748 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/third_party/python/PC/
Dpython3dll.c637 EXPORT_FUNC(PyUnicode_DecodeLocale)
/third_party/python/Doc/data/
Dstable_abi.dat712 function,PyUnicode_DecodeLocale,3.7,
Drefcounts.dat2823 PyUnicode_DecodeLocale:PyObject*::+1:
2824 PyUnicode_DecodeLocale:const char*:str::
2825 PyUnicode_DecodeLocale:const char*:errors::
/third_party/python/Misc/
Dstable_abi.txt1912 function PyUnicode_DecodeLocale
DHISTORY10526 - Issue #13560: Add PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize()
/third_party/python/Doc/c-api/
Dunicode.rst804 .. c:function:: PyObject* PyUnicode_DecodeLocale(const char *str, const char *errors)
/third_party/python/Objects/
Dunicodeobject.c4078 PyUnicode_DecodeLocale(const char *str, const char *errors) in PyUnicode_DecodeLocale() function