Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dunicodeobject.h165 # define PyUnicode_Decode PyUnicodeUCS2_Decode macro
252 # define PyUnicode_Decode PyUnicodeUCS4_Decode macro
685 PyAPI_FUNC(PyObject*) PyUnicode_Decode(
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/include/
Dcext.h137 PyUnicode_Decode( \
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/include/
Dcext.h175 PyUnicode_Decode( \
/external/python/cpython2/Doc/data/
Drefcounts.dat1509 PyUnicode_Decode:PyObject*::+1:
1510 PyUnicode_Decode:const char*:s::
1511 PyUnicode_Decode:int:size::
1512 PyUnicode_Decode:const char*:encoding::
1513 PyUnicode_Decode:const char*:errors::
/external/python/cpython3/Doc/data/
Drefcounts.dat2436 PyUnicode_Decode:PyObject*::+1:
2437 PyUnicode_Decode:const char*:s::
2438 PyUnicode_Decode:Py_ssize_t:size::
2439 PyUnicode_Decode:const char*:encoding::
2440 PyUnicode_Decode:const char*:errors::
/external/python/cpython2/Parser/
Dtokenizer.c615 PyObject* buf = PyUnicode_Decode(str, strlen(str), enc, NULL); in translate_into_utf8()
810 decoded = PyUnicode_Decode(*inp, strlen(*inp), encoding, NULL); in tok_stdin_decode()
/external/python/cpython3/PC/
Dpython3.def655 PyUnicode_Decode=python37.PyUnicode_Decode
/external/python/cpython3/Include/
Dunicodeobject.h1178 PyAPI_FUNC(PyObject*) PyUnicode_Decode(
/external/python/cpython3/Modules/
Dzipimport.c1091 nameobj = PyUnicode_Decode(name, name_size, charset, NULL); in read_directory()
Dpyexpat.c1132 u = PyUnicode_Decode((char*) template_buffer, 256, name, "replace"); in PyUnknownEncodingHandler()
D_testcapimodule.c1544 obj = PyUnicode_Decode("t\xeate", strlen("t\xeate"), in test_s_code()
1654 obj = PyUnicode_Decode("test", strlen("test"), in test_u_code()
D_ssl.c848 hostname = PyUnicode_Decode(server_hostname, len, "ascii", "strict"); in _ssl_configure_hostname()
D_pickle.c5111 obj = PyUnicode_Decode(s, size, self->encoding, self->errors); in load_counted_binstring()
/external/python/cpython3/Parser/
Dtokenizer.c692 PyObject* buf = PyUnicode_Decode(str, strlen(str), enc, NULL); in translate_into_utf8()
/external/python/cpython2/Objects/
Dunicodeobject.c1228 v = PyUnicode_Decode(s, len, encoding, errors); in PyUnicode_FromEncodedObject()
1235 PyObject *PyUnicode_Decode(const char *s, in PyUnicode_Decode() function
8301 unistr = PyUnicode_Decode(str, 1, NULL, "strict"); in formatchar()
8597 unicode = PyUnicode_Decode(PyString_AS_STRING(temp), in PyUnicode_Format()
Dstringobject.c4719 format = PyUnicode_Decode(fmt, fmtcnt, NULL, NULL); in PyString_Format()
/external/python/cpython2/Modules/
Dpyexpat.c1250 PyUnicode_Decode(template_buffer, 256, name, "replace"); in PyUnknownEncodingHandler()
D_testcapimodule.c1667 obj = PyUnicode_Decode("test", strlen("test"), in test_u_code()
D_elementtree.c2484 u = PyUnicode_Decode((char*) s, 256, name, "replace");
Dposixmodule.c2259 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict"); in posix_getcwdu()
2652 return PyUnicode_Decode(outbuf, strlen(outbuf), in posix__getfullpathname()
/external/python/cpython3/Python/
Dbltinmodule.c2110 result = PyUnicode_Decode(s, len, stdin_encoding_str, in builtin_input_impl()
/external/python/cpython3/Objects/
Dunicodeobject.c3096 v = PyUnicode_Decode( in PyUnicode_FromEncodedObject()
3121 v = PyUnicode_Decode((char*) buffer.buf, buffer.len, encoding, errors); in PyUnicode_FromEncodedObject()
3176 PyUnicode_Decode(const char *s, in PyUnicode_Decode() function
3686 return PyUnicode_Decode(s, size, in PyUnicode_DecodeFSDefaultAndSize()
/external/python/cpython2/Doc/c-api/
Dunicode.rst441 .. c:function:: PyObject* PyUnicode_Decode(const char *s, Py_ssize_t size, const char *encoding, co…
/external/python/cpython3/Doc/c-api/
Dunicode.rst1007 .. c:function:: PyObject* PyUnicode_Decode(const char *s, Py_ssize_t size, \
/external/python/cpython3/Misc/
DHISTORY12733 "iso-8859-1" in PyUnicode_AsEncodedString() and PyUnicode_Decode().