Home
last modified time | relevance | path

Searched refs:PyUnicode_Decode (Results 1 – 10 of 10) 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/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/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/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
8305 unistr = PyUnicode_Decode(str, 1, NULL, "strict"); in formatchar()
8601 unicode = PyUnicode_Decode(PyString_AS_STRING(temp), in PyUnicode_Format()
Dstringobject.c4722 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.c1574 obj = PyUnicode_Decode("test", strlen("test"), in test_u_code()
D_elementtree.c2441 u = PyUnicode_Decode((char*) s, 256, name, "replace");
Dposixmodule.c2253 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict"); in posix_getcwdu()
2646 return PyUnicode_Decode(outbuf, strlen(outbuf), in posix__getfullpathname()
/external/python/cpython2/Doc/c-api/
Dunicode.rst441 .. c:function:: PyObject* PyUnicode_Decode(const char *s, Py_ssize_t size, const char *encoding, co…