Home | History | Annotate | Download | only in Lex

Lines Matching defs:UTF32

212 /// return the UTF32.
248 UcnVal > 0x10FFFF) { // maximum legal UTF32 value
317 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
326 typedef uint32_t UTF32;
327 UTF32 UcnVal = 0;
344 UTF32 *ResultPtr = reinterpret_cast<UTF32*>(ResultBuf);
355 if (UcnVal <= (UTF32)0xFFFF) {
371 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
378 if (UcnVal < (UTF32)0x80)
380 else if (UcnVal < (UTF32)0x800)
382 else if (UcnVal < (UTF32)0x10000)
1306 UTF32 *ResultWidePtr = reinterpret_cast<UTF32*>(ResultPtr);
1327 UTF32 *ResultWidePtr = reinterpret_cast<UTF32*>(ResultBuf.data());