Home | History | Annotate | Download | only in Support

Lines Matching defs:codepoint

211     uint32_t codepoint = ((*Position & 0x1F) << 6) |
213 if (codepoint >= 0x80)
214 return std::make_pair(codepoint, 2);
222 uint32_t codepoint = ((*Position & 0x0F) << 12) |
227 if (codepoint >= 0x800 &&
228 (codepoint < 0xD800 || codepoint > 0xDFFF))
229 return std::make_pair(codepoint, 3);
238 uint32_t codepoint = ((*Position & 0x07) << 18) |
242 if (codepoint >= 0x10000 && codepoint <= 0x10FFFF)
243 return std::make_pair(codepoint, 4);