Lines Matching full:utf8
827 uint8_t utf8 = CheckUtfBytes(bytes, &errorKind);
831 " string: '%s'", errorKind, utf8, bytes);
838 uint8_t utf8 = *(bytes++);
840 switch (utf8 >> 4) {
862 return utf8;
865 utf8 = *(bytes++);
866 if ((utf8 & 0xc0) != 0x80) {
868 return utf8;
874 utf8 = *(bytes++);
875 if ((utf8 & 0xc0) != 0x80) {
877 return utf8;