Lines Matching defs:codepoint
226 uint32_t codepoint = ((*Position & 0x1F) << 6) |
228 if (codepoint >= 0x80)
229 return std::make_pair(codepoint, 2);
237 uint32_t codepoint = ((*Position & 0x0F) << 12) |
242 if (codepoint >= 0x800 &&
243 (codepoint < 0xD800 || codepoint > 0xDFFF))
244 return std::make_pair(codepoint, 3);
253 uint32_t codepoint = ((*Position & 0x07) << 18) |
257 if (codepoint >= 0x10000 && codepoint <= 0x10FFFF)
258 return std::make_pair(codepoint, 4);