Searched defs:codepoint (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/utils/
H A DUnicode.cpp529 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8charLen); local
530 if (codepoint > 0xFFFF) u16measuredLen++; // this will be a surrogate pair in utf16
553 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); local
555 // Convert the UTF32 codepoint to one or more UTF16 codepoints
556 if (codepoint <= 0xFFFF) {
558 *u16cur++ = (char16_t) codepoint;
561 codepoint = codepoint - 0x10000;
562 *u16cur++ = (char16_t) ((codepoint >> 10) + 0xD800);
563 *u16cur++ = (char16_t) ((codepoint
[all...]

Completed in 154 milliseconds