Home | History | Annotate | Download | only in i18n

Lines Matching defs:firstByte

247     int32_t firstByte = it->charValue = it->nextByte(det);
249 if (firstByte < 0) {
253 if (firstByte <= 0x7F || (firstByte > 0xA0 && firstByte <= 0xDF)) {
259 it->charValue = (firstByte << 8) | secondByte;
293 int32_t firstByte = 0;
299 firstByte = it->charValue = it->nextByte(det);
301 if (firstByte < 0) {
306 if (firstByte <= 0x8D) {
317 if (firstByte >= 0xA1 && firstByte <= 0xFE) {
326 if (firstByte == 0x8E) {
340 if (firstByte == 0x8F) {
407 int32_t firstByte;
411 firstByte = it->charValue = it->nextByte(det);
413 if (firstByte < 0) {
417 if (firstByte <= 0x7F || firstByte == 0xFF) {
458 int32_t firstByte = 0;
465 firstByte = it->charValue = it->nextByte(det);
467 if (firstByte < 0) {
472 if (firstByte <= 0x80) {
483 if (firstByte >= 0x81 && firstByte <= 0xFE) {