Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/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.c455 PyUnicode_DecodeLocale(p->tm_zone, "surrogateescape"));
459 PyUnicode_DecodeLocale(zone, "surrogateescape"));
1768 otz0 = PyUnicode_DecodeLocale(_Py_tzname[0], "surrogateescape");
1772 otz1 = PyUnicode_DecodeLocale(_Py_tzname[1], "surrogateescape");
Dreadline.c157 return PyUnicode_DecodeLocale(s, "surrogateescape"); in decode()
D_datetimemodule.c6135 nameo = PyUnicode_DecodeLocale(zone, "surrogateescape"); in local_timezone_from_timestamp()
Dposixmodule.c11198 return PyUnicode_DecodeLocale(message, "surrogateescape"); in os_strerror_impl()
/aosp_15_r20/external/python/cpython3/Python/
Ddynload_shlib.c89 error_ob = PyUnicode_DecodeLocale(error, "surrogateescape"); in _PyImport_FindSharedFuncptr()
Derrors.c772 message = PyUnicode_DecodeLocale(s, "surrogateescape"); in PyErr_SetFromErrnoWithFilenameObjects()
Dfileutils.c2559 #define GET_LOCALE_STRING(ATTR) PyUnicode_DecodeLocale(lc->ATTR, NULL) in _Py_GetLocaleconvNumeric()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dunicodeobject.h744 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dunicodeobject.h744 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/aosp_15_r20/external/python/cpython3/Include/
Dunicodeobject.h744 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dunicodeobject.h744 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dunicodeobject.h744 PyAPI_FUNC(PyObject*) PyUnicode_DecodeLocale(
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat2760 PyUnicode_DecodeLocale:PyObject*::+1:
2761 PyUnicode_DecodeLocale:const char*:str::
2762 PyUnicode_DecodeLocale:const char*:errors::
Dstable_abi.dat732 function,PyUnicode_DecodeLocale,3.7,,
Dpython3.11.abi793 …<elf-symbol name='PyUnicode_DecodeLocale' type='func-type' binding='global-binding' visibility='de…
10759PyUnicode_DecodeLocale' mangled-name='PyUnicode_DecodeLocale' filepath='Objects/unicodeobject.c' l…
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c650 EXPORT_FUNC(PyUnicode_DecodeLocale)
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml1996 [function.PyUnicode_DecodeLocale]
DHISTORY10526 - Issue #13560: Add PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dunicode.rst800 .. c:function:: PyObject* PyUnicode_DecodeLocale(const char *str, const char *errors)
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c4008 PyUnicode_DecodeLocale(const char *str, const char *errors) in PyUnicode_DecodeLocale() function