Home | History | Annotate | Download | only in Lex

Lines Matching refs:UTF32

258 /// return the UTF32.
294 UcnVal > 0x10FFFF) { // maximum legal UTF32 value
363 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
372 typedef uint32_t UTF32;
373 UTF32 UcnVal = 0;
390 UTF32 *ResultPtr = reinterpret_cast<UTF32*>(ResultBuf);
401 if (UcnVal <= (UTF32)0xFFFF) {
417 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
424 if (UcnVal < (UTF32)0x80)
426 else if (UcnVal < (UTF32)0x800)
428 else if (UcnVal < (UTF32)0x10000)
1481 UTF32 *ResultWidePtr = reinterpret_cast<UTF32*>(ResultPtr);
1502 UTF32 *ResultWidePtr = reinterpret_cast<UTF32*>(ResultBuf.data());