Home | History | Annotate | Download | only in Lex

Lines Matching defs:UTF32

216 /// return the UTF32.
252 UcnVal > 0x10FFFF) { // maximum legal UTF32 value
321 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
330 typedef uint32_t UTF32;
331 UTF32 UcnVal = 0;
348 UTF32 *ResultPtr = reinterpret_cast<UTF32*>(ResultBuf);
359 if (UcnVal <= (UTF32)0xFFFF) {
375 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
382 if (UcnVal < (UTF32)0x80)
384 else if (UcnVal < (UTF32)0x800)
386 else if (UcnVal < (UTF32)0x10000)
1372 UTF32 *ResultWidePtr = reinterpret_cast<UTF32*>(ResultPtr);
1393 UTF32 *ResultWidePtr = reinterpret_cast<UTF32*>(ResultBuf.data());