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

  /external/clang/test/SemaCXX/
cxx0x-type-convert-construct.cpp 4 char *u8str; local
5 u8str = u8"a UTF-8 string"; // expected-error {{assigning to 'char *' from incompatible type 'const char [15]'}}
  /frameworks/native/libs/utils/
Unicode.cpp 519 ssize_t utf8_to_utf16_length(const uint8_t* u8str, size_t u8len)
521 const uint8_t* const u8end = u8str + u8len;
522 const uint8_t* u8cur = u8str;
545 char16_t* utf8_to_utf16_no_null_terminator(const uint8_t* u8str, size_t u8len, char16_t* u16str)
547 const uint8_t* const u8end = u8str + u8len;
548 const uint8_t* u8cur = u8str;
571 void utf8_to_utf16(const uint8_t* u8str, size_t u8len, char16_t* u16str) {
572 char16_t* end = utf8_to_utf16_no_null_terminator(u8str, u8len, u16str);
String16.cpp 62 static char16_t* allocFromUTF8(const char* u8str, size_t u8len)
66 const uint8_t* u8cur = (const uint8_t*) u8str;
77 u8cur = (const uint8_t*) u8str;
  /external/icu4c/test/intltest/
utxttest.cpp 1468 const char *u8str = "\\xc8\\x81\\xe1\\x82\\x83\\xf1\\x84\\x85\\x86"; local
1684 const char u8str[] = {char(0x31), (char)0x32, (char)0x33, 0}; local
    [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp 588 const uint8_t* u8str = strings+off; local
590 *u16len = decodeLength(&u8str);
591 size_t u8len = decodeLength(&u8str);
594 if ((uint32_t)(u8str+u8len-strings) < mStringPoolSize) {
601 ssize_t actualLen = utf8_to_utf16_length(u8str, u8len);
616 utf8_to_utf16(u8str, u8len, u16str);
621 (long long)idx, (long long)(u8str+u8len-strings),
    [all...]

Completed in 88 milliseconds