Searched refs:u8cur (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/utils/
H A DUnicode.cpp522 const uint8_t* u8cur = u8str; local
526 while (u8cur < u8end) {
528 int u8charLen = utf8_codepoint_len(*u8cur);
529 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8charLen);
531 u8cur += u8charLen;
538 if (u8cur != u8end) {
548 const uint8_t* u8cur = u8str; local
551 while (u8cur < u8end) {
552 size_t u8len = utf8_codepoint_len(*u8cur);
553 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8le
[all...]
H A DString16.cpp66 const uint8_t* u8cur = (const uint8_t*) u8str; local
68 const ssize_t u16len = utf8_to_utf16_length(u8cur, u8len);
73 const uint8_t* const u8end = u8cur + u8len;
77 u8cur = (const uint8_t*) u8str;
80 utf8_to_utf16(u8cur, u8len, u16str);

Completed in 80 milliseconds