Searched refs:PyUnicode_DecodeUTF8 (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython2/Include/ |
D | unicodeobject.h | 174 # define PyUnicode_DecodeUTF8 PyUnicodeUCS2_DecodeUTF8 macro 261 # define PyUnicode_DecodeUTF8 PyUnicodeUCS4_DecodeUTF8 macro 750 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1539 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/ |
D | pyexpat.c | 178 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.c | 2065 return PyUnicode_DecodeUTF8(string, size, "strict"); 2121 value = PyUnicode_DecodeUTF8(p, size, "strict");
|
D | _tkinter.c | 472 PyObject *r = PyUnicode_DecodeUTF8(s, size, NULL); in unicode_FromTclStringAndSize() 494 r = PyUnicode_DecodeUTF8(s, size, NULL); in unicode_FromTclStringAndSize()
|
D | _json.c | 295 uni = PyUnicode_DecodeUTF8(input_str, input_chars, "strict"); in ascii_escape_str()
|
D | _ssl.c | 703 value_obj = PyUnicode_DecodeUTF8((char *) valuebuf, in _create_tuple_for_attribute()
|
D | cPickle.c | 3786 if (!( unicode = PyUnicode_DecodeUTF8(s, l, NULL))) in load_binunicode()
|
/external/python/cpython2/Modules/_sqlite/ |
D | cursor.c | 282 return PyUnicode_DecodeUTF8(val_str, size, NULL); in pysqlite_unicode_from_string()
|
D | connection.c | 612 cur_py_value = PyUnicode_DecodeUTF8(val_str, strlen(val_str), NULL); in _pysqlite_build_py_params()
|
/external/python/cpython2/Python/ |
D | marshal.c | 871 v = PyUnicode_DecodeUTF8(buffer, n, NULL); in r_object()
|
D | ast.c | 3380 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/ |
D | tokenizer.c | 1704 PyObject *unicode_text = PyUnicode_DecodeUTF8(text, len, "replace"); in dec_utf8()
|
/external/python/cpython2/Objects/ |
D | unicodeobject.c | 528 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
|
D | stringobject.c | 633 u = PyUnicode_DecodeUTF8(s, t - s, errors); in PyString_DecodeEscape()
|
/external/python/cpython2/Doc/c-api/ |
D | unicode.rst | 482 .. 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/ |
D | message.cc | 730 PyObject* result = PyUnicode_DecodeUTF8(value.c_str(), value.length(), NULL); in CheckAndGetInteger()
|
/external/python/cpython2/Misc/ |
D | NEWS | 7726 PyUnicode_DecodeUTF8() once, remember the result and output it in a second 7728 of using the replace error handler in PyUnicode_DecodeUTF8().
|