Home | History | Annotate | Download | only in inspector

Lines Matching refs:UChar32

48 using UChar32 = uint32_t;
84 UChar32 ch;
86 const UChar32 byteMask = 0xBF;
87 const UChar32 byteMark = 0x80;
91 // If we have a surrogate pair, convert to UChar32 first.
95 UChar32 ch2 = static_cast<uint16_t>(*source);
96 // If it's a low surrogate, convert to UChar32.
119 if (ch < (UChar32)0x80) {
121 } else if (ch < (UChar32)0x800) {
123 } else if (ch < (UChar32)0x10000) {
125 } else if (ch < (UChar32)0x110000) {
252 static const UChar32 offsetsFromUTF8[6] = {0x00000000UL,
256 static_cast<UChar32>(0xFA082080UL),
257 static_cast<UChar32>(0x82082080UL)};
259 static inline UChar32 readUTF8Sequence(const char*& sequence, size_t length) {
260 UChar32 character = 0;
312 UChar32 character = readUTF8Sequence(source, utf8SequenceLength);