Lines Matching defs:codepoint
208 uint32_t codepoint = ((*Position & 0x1F) << 6) |
210 if (codepoint >= 0x80)
211 return std::make_pair(codepoint, 2);
218 uint32_t codepoint = ((*Position & 0x0F) << 12) |
223 if (codepoint >= 0x800 &&
224 (codepoint < 0xD800 || codepoint > 0xDFFF))
225 return std::make_pair(codepoint, 3);
233 uint32_t codepoint = ((*Position & 0x07) << 18) |
237 if (codepoint >= 0x10000 && codepoint <= 0x10FFFF)
238 return std::make_pair(codepoint, 4);