/aosp_15_r20/external/python/cpython3/Modules/ |
D | _elementtree.c | 3122 value = PyUnicode_DecodeUTF8(p, size, "strict"); in makeuniversal() 3209 key = PyUnicode_DecodeUTF8(data_in + 1, data_len - 2, "strict"); in expat_default_handler() 3266 PyObject* value = PyUnicode_DecodeUTF8(attrib_in[1], strlen(attrib_in[1]), "strict"); in expat_start_handler() 3322 data = PyUnicode_DecodeUTF8(data_in, data_len, "strict"); in expat_data_handler() 3387 prefix = PyUnicode_DecodeUTF8(prefix_in, strlen(prefix_in), "strict"); in expat_start_ns_handler() 3390 uri = PyUnicode_DecodeUTF8(uri_in, strlen(uri_in), "strict"); in expat_start_ns_handler() 3401 prefix = PyUnicode_DecodeUTF8(prefix_in, strlen(prefix_in), "strict"); in expat_start_ns_handler() 3404 uri = PyUnicode_DecodeUTF8(uri_in, strlen(uri_in), "strict"); in expat_start_ns_handler() 3440 prefix = PyUnicode_DecodeUTF8(prefix_in, strlen(prefix_in), "strict"); in expat_end_ns_handler() 3464 comment = PyUnicode_DecodeUTF8(comment_in, strlen(comment_in), "strict"); in expat_comment_handler() [all …]
|
D | _scproxy.c | 24 return PyUnicode_DecodeUTF8( in cfstring_to_pystring() 46 result = PyUnicode_DecodeUTF8( in cfstring_to_pystring()
|
D | pyexpat.c | 162 return PyUnicode_DecodeUTF8(str, strlen(str), "strict"); in conv_string_to_unicode() 174 return PyUnicode_DecodeUTF8((const char *)str, len, "strict"); in conv_string_len_to_unicode()
|
/aosp_15_r20/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(
|
/aosp_15_r20/external/python/cpython3/Parser/ |
D | pegen_errors.c | 281 return PyUnicode_DecodeUTF8(cur_line, next_newline - cur_line, "replace"); in get_error_line_from_tokenizer_buffers() 343 error_line = PyUnicode_DecodeUTF8(p->tok->buf, size, "replace"); in _PyPegen_raise_error_known_location()
|
D | pegen.c | 32 PyObject *text = PyUnicode_DecodeUTF8(str, col_offset, "replace"); in _PyPegen_byte_offset_to_character_offset() 456 PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL); in _PyPegen_new_identifier()
|
D | tokenizer.c | 1122 errtext = PyUnicode_DecodeUTF8(tok->line_start, tok->cur - tok->line_start, in _syntaxerror_range() 1138 errtext = PyUnicode_DecodeUTF8(tok->line_start, line_len, in _syntaxerror_range() 1323 s = PyUnicode_DecodeUTF8(tok->start, tok->cur - tok->start, NULL); in verify_identifier()
|
D | action_helpers.c | 173 PyObject *uni = PyUnicode_DecodeUTF8(PyBytes_AS_STRING(str), PyBytes_GET_SIZE(str), NULL); in _PyPegen_join_names_with_dot() 1011 PyObject *res = PyUnicode_DecodeUTF8(s, strlen(s), NULL); in _PyPegen_new_type_comment()
|
D | string_parser.c | 60 return PyUnicode_DecodeUTF8(t, s - t, NULL); in decode_utf8()
|
/aosp_15_r20/external/python/cpython3/Modules/_ssl/ |
D | misc.c | 33 return PyUnicode_DecodeUTF8(data, size, error); in _PySSL_UnicodeFromBIO()
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | structseq.c | 238 PyObject *type_name = PyUnicode_DecodeUTF8(typ->tp_name, in structseq_repr() 277 PyObject *name = PyUnicode_DecodeUTF8(name_utf8, strlen(name_utf8), NULL); in structseq_repr()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | Python-tokenize.c | 84 PyObject *line = PyUnicode_DecodeUTF8(it->tok->buf, size, "replace"); in tokenizeriter_next()
|
/aosp_15_r20/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::
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | unicodeobject.h | 450 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | unicodeobject.h | 450 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
|
/aosp_15_r20/external/python/pyyaml/yaml/ |
D | _yaml.pxd | 11 object PyUnicode_DecodeUTF8(char *u, int s, char *e)
|
D | _yaml.pyx | 432 value = PyUnicode_DecodeUTF8(<char *>token.data.scalar.value, 564 value = PyUnicode_DecodeUTF8(<char *>event.data.scalar.value, 746 value = PyUnicode_DecodeUTF8(<char *>self.parsed_event.data.scalar.value, 1393 value = PyUnicode_DecodeUTF8(buffer, size, 'strict')
|
/aosp_15_r20/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/ |
H A D | rjsmin.c | 467 script = PyUnicode_DecodeUTF8(PyString_AS_STRING(result), in rjsmin_jsmin()
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | unicodeobject.h | 450 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | unicodeobject.h | 450 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | unicodeobject.h | 450 PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8(
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/python/ |
D | convert.c | 61 PyUnicode_DecodeUTF8(val.str_val.data, val.str_val.size, NULL); in PyUpb_UpbToPy()
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2491 PyUnicode_DecodeUTF8:PyObject*::+1: 2492 PyUnicode_DecodeUTF8:const char*:s:: 2493 PyUnicode_DecodeUTF8:Py_ssize_t:size:: 2494 PyUnicode_DecodeUTF8:const char*:errors::
|
/aosp_15_r20/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()
|
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/ |
D | cursor.c | 281 return PyUnicode_DecodeUTF8(val_str, size, NULL); in pysqlite_unicode_from_string()
|