Home
last modified time | relevance | path

Searched refs:PyUnicode_DecodeUTF8 (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Include/
Dunicodeobject.h174 # define PyUnicode_DecodeUTF8 PyUnicodeUCS2_DecodeUTF8 macro
261 # define PyUnicode_DecodeUTF8 PyUnicodeUCS4_DecodeUTF8 macro
750 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
/external/python/cpython2/Doc/data/
Drefcounts.dat1539 PyUnicode_DecodeUTF8:PyObject*::+1:
1540 PyUnicode_DecodeUTF8:const char*:s::
1541 PyUnicode_DecodeUTF8:int:size::
1542 PyUnicode_DecodeUTF8:const char*:errors::
/external/python/cpython2/Modules/
Dpyexpat.c178 return PyUnicode_DecodeUTF8(str, strlen(str), "strict"); in conv_string_to_unicode()
191 return PyUnicode_DecodeUTF8((const char *)str, len, "strict"); in conv_string_len_to_unicode()
D_elementtree.c2065 return PyUnicode_DecodeUTF8(string, size, "strict");
2121 value = PyUnicode_DecodeUTF8(p, size, "strict");
D_tkinter.c472 PyObject *r = PyUnicode_DecodeUTF8(s, size, NULL); in unicode_FromTclStringAndSize()
494 r = PyUnicode_DecodeUTF8(s, size, NULL); in unicode_FromTclStringAndSize()
D_json.c295 uni = PyUnicode_DecodeUTF8(input_str, input_chars, "strict"); in ascii_escape_str()
D_ssl.c703 value_obj = PyUnicode_DecodeUTF8((char *) valuebuf, in _create_tuple_for_attribute()
DcPickle.c3786 if (!( unicode = PyUnicode_DecodeUTF8(s, l, NULL))) in load_binunicode()
/external/python/cpython2/Modules/_sqlite/
Dcursor.c282 return PyUnicode_DecodeUTF8(val_str, size, NULL); in pysqlite_unicode_from_string()
Dconnection.c612 cur_py_value = PyUnicode_DecodeUTF8(val_str, strlen(val_str), NULL); in _pysqlite_build_py_params()
/external/python/cpython2/Python/
Dmarshal.c871 v = PyUnicode_DecodeUTF8(buffer, n, NULL); in r_object()
Dast.c3380 u = PyUnicode_DecodeUTF8(t, s - t, NULL); in decode_utf8()
3532 PyObject *v, *u = PyUnicode_DecodeUTF8(s, len, NULL); in parsestr()
/external/python/cpython2/Parser/
Dtokenizer.c1704 PyObject *unicode_text = PyUnicode_DecodeUTF8(text, len, "replace"); in dec_utf8()
/external/python/cpython2/Objects/
Dunicodeobject.c528 return PyUnicode_DecodeUTF8(u, size, NULL); in PyUnicode_FromStringAndSize()
820 PyObject *str = PyUnicode_DecodeUTF8(s, strlen(s), "replace"); in PyUnicode_FromFormatV()
1247 return PyUnicode_DecodeUTF8(s, size, errors); in PyUnicode_Decode()
1958 PyObject *PyUnicode_DecodeUTF8(const char *s, in PyUnicode_DecodeUTF8() function
Dstringobject.c633 u = PyUnicode_DecodeUTF8(s, t - s, errors); in PyString_DecodeEscape()
/external/python/cpython2/Doc/c-api/
Dunicode.rst482 .. c:function:: PyObject* PyUnicode_DecodeUTF8(const char *s, Py_ssize_t size, const char *errors)
494 If *consumed* is *NULL*, behave like :c:func:`PyUnicode_DecodeUTF8`. If
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc730 PyObject* result = PyUnicode_DecodeUTF8(value.c_str(), value.length(), NULL); in CheckAndGetInteger()
/external/python/cpython2/Misc/
DNEWS7726 PyUnicode_DecodeUTF8() once, remember the result and output it in a second
7728 of using the replace error handler in PyUnicode_DecodeUTF8().