Home | History | Annotate | Download | only in inspector

Lines Matching refs:UChar32

51 using UChar32 = uint32_t;
87 UChar32 ch;
89 const UChar32 byteMask = 0xBF;
90 const UChar32 byteMark = 0x80;
94 // If we have a surrogate pair, convert to UChar32 first.
98 UChar32 ch2 = static_cast<uint16_t>(*source);
99 // If it's a low surrogate, convert to UChar32.
122 if (ch < (UChar32)0x80) {
124 } else if (ch < (UChar32)0x800) {
126 } else if (ch < (UChar32)0x10000) {
128 } else if (ch < (UChar32)0x110000) {
249 static const UChar32 offsetsFromUTF8[6] = {0x00000000UL,
253 static_cast<UChar32>(0xFA082080UL),
254 static_cast<UChar32>(0x82082080UL)};
256 static inline UChar32 readUTF8Sequence(const char*& sequence, size_t length) {
257 UChar32 character = 0;
304 UChar32 character = readUTF8Sequence(source, utf8SequenceLength);