Home | History | Annotate | Download | only in i18n

Lines Matching full:nextindex

875             int32_t nextIndex = sIndex;
877 c2 = s16[nextIndex++];
888 c2 = s8[nextIndex++];
891 if(c2 <= 0xc5 && 0xc2 <= c2 && nextIndex != sLength &&
892 0x80 <= (t = s8[nextIndex]) && t <= 0xbf) {
894 ++nextIndex;
896 int32_t i2 = nextIndex + 1;
898 if(c2 == 0xe2 && s8[nextIndex] == 0x80 &&
901 } else if(c2 == 0xef && s8[nextIndex] == 0xbf &&
910 nextIndex += 2;
930 sIndex = nextIndex;