HomeSort by relevance Sort by last modified time
    Searched refs:utf8_length (Results 1 - 13 of 13) sorted by null

  /frameworks/base/libs/androidfw/
Util.cpp 59 ssize_t utf8_length = utf16_to_utf8_length(utf16.data(), utf16.length()); local
60 if (utf8_length <= 0) {
65 utf8.resize(utf8_length);
66 utf16_to_utf8(utf16.data(), utf16.length(), &*utf8.begin(), utf8_length + 1);
  /system/core/libutils/include/utils/
Unicode.h 133 ssize_t utf8_length(const char *src);
  /external/libtextclassifier/util/utf8/
unicodetext.h 121 int utf8_length() const { function in class:libtextclassifier2::UnicodeText::const_iterator
  /frameworks/base/tools/aapt2/util/
Util.cpp 315 ssize_t utf8_length = utf16_to_utf8_length(utf16.data(), utf16.length()); local
316 if (utf8_length <= 0) {
321 utf8.resize(utf8_length);
322 utf16_to_utf8(utf16.data(), utf16.length(), &*utf8.begin(), utf8_length + 1);
  /prebuilts/misc/windows/sdl2/test/
testime.c 40 size_t utf8_length(unsigned char c) function
57 size_t len = utf8_length(*p);
  /art/runtime/mirror/
string.cc 213 int32_t utf8_length) {
215 const bool compressible = kUseStringCompression && (utf16_length == utf8_length);
226 ConvertModifiedUtf8ToUtf16(utf16_data_out, utf16_length, utf8_data_in, utf8_length);
string.h 137 const char* utf8_data_in, int32_t utf8_length)
  /frameworks/base/tools/aapt2/
ResourceUtils.cpp 874 const size_t utf8_length = xml_string_.text.size(); local
875 ssize_t len = utf8_to_utf16_length(utf8_data + previous_len, utf8_length - previous_len);
  /external/v8/src/
value-serializer.cc 1176 uint32_t utf8_length; local
    [all...]
api.cc 5465 int utf8_length = 0; local
5476 int utf8_length = 0; local
    [all...]
  /system/core/libutils/
Unicode.cpp 398 ssize_t utf8_length(const char *src)
  /external/python/cpython3/Include/
unicodeobject.h 199 immediately follow the structure. utf8_length and wstr_length can be found
226 * utf8_length = 0 if utf8 is NULL
247 * utf8_length = 0
258 * utf8 is shared and utf8_length = length with data.any if ascii = 1
259 * utf8_length = 0 if utf8 is NULL
342 Py_ssize_t utf8_length; /* Number of bytes in utf8, excluding the member in struct:__anon33195
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 87 (((PyCompactUnicodeObject*)(op))->utf8_length)
410 assert (compact->utf8_length == ascii->length);
432 assert(compact->utf8_length == 0);
    [all...]

Completed in 631 milliseconds