Home
last modified time | relevance | path

Searched refs:PyUnicode_Decode (Results 1 – 20 of 20) sorted by relevance

/third_party/python/Include/
Dunicodeobject.h362 PyAPI_FUNC(PyObject*) PyUnicode_Decode(
/third_party/python/Doc/data/
Drefcounts.dat2454 PyUnicode_Decode:PyObject*::+1:
2455 PyUnicode_Decode:const char*:s::
2456 PyUnicode_Decode:Py_ssize_t:size::
2457 PyUnicode_Decode:const char*:encoding::
2458 PyUnicode_Decode:const char*:errors::
Dstable_abi.dat705 function,PyUnicode_Decode,3.2,
/third_party/python/Misc/
Dvalgrind-python.supp301 fun:PyUnicode_Decode
Dstable_abi.txt1386 function PyUnicode_Decode
DHISTORY12733 "iso-8859-1" in PyUnicode_AsEncodedString() and PyUnicode_Decode().
/third_party/python/Modules/_sqlite/
Dcursor.c349 error_msg = PyUnicode_Decode(buf, strlen(buf), "ascii", "replace"); in _pysqlite_fetch_one_row()
/third_party/python/PC/
Dpython3dll.c630 EXPORT_FUNC(PyUnicode_Decode)
/third_party/python/Python/
Derrors.c1756 res = PyUnicode_Decode(linebuf, strlen(linebuf), encoding, "replace"); in err_programtext()
Dbltinmodule.c2203 result = PyUnicode_Decode(s, len, stdin_encoding_str, in builtin_input_impl()
/third_party/python/Modules/
Dpyexpat.c1099 u = PyUnicode_Decode((char*) template_buffer, 256, name, "replace"); in PyUnknownEncodingHandler()
D_testcapimodule.c1709 obj = PyUnicode_Decode("t\xeate", strlen("t\xeate"), in test_s_code()
1824 obj = PyUnicode_Decode("test", strlen("test"), in test_u_code()
D_ssl.c742 hostname = PyUnicode_Decode(server_hostname, len, "ascii", "strict"); in _ssl_configure_hostname()
D_pickle.c5503 obj = PyUnicode_Decode(s, size, self->encoding, self->errors); in load_counted_binstring()
/third_party/python/Parser/
Dtokenizer.c585 PyObject* buf = PyUnicode_Decode(str, strlen(str), enc, NULL); in translate_into_utf8()
/third_party/python/Objects/
Dunicodeobject.c3518 return PyUnicode_Decode( in PyUnicode_FromEncodedObject()
3545 v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors); in PyUnicode_FromEncodedObject()
3600 PyUnicode_Decode(const char *s, in PyUnicode_Decode() function
4105 return PyUnicode_Decode(s, size, in PyUnicode_DecodeFSDefaultAndSize()
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2947 name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL); in SWIG_Python_NonDynamicSetAttr()
/third_party/python/Doc/c-api/
Dunicode.rst1021 .. c:function:: PyObject* PyUnicode_Decode(const char *s, Py_ssize_t size, \
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2926 name = PyUnicode_Decode(PyString_AsString(name), PyString_Size(name), NULL, NULL); in SWIG_Python_NonDynamicSetAttr()
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst5379 :c:func:`PyUnicode_Decode` when using GCC builtin strcmp().