Home | History | Annotate | Download | only in i18n

Lines Matching full:sindex

798                                const uint8_t *s8, int32_t &sIndex, int32_t sLength) {
801 int32_t i2 = sIndex + 1;
803 uint8_t t1 = s8[sIndex];
805 sIndex += 2;
821 const uint8_t *s8, int32_t &sIndex) {
826 return table[((c - 0xc2) << 6) + s8[sIndex++]]; // 0080..017F
828 uint8_t t2 = s8[sIndex + 1];
829 sIndex += 2;
841 const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength) {
849 sLength = sIndex - 1;
855 if(sIndex != sLength) {
858 int32_t nextIndex = sIndex;
898 sLength = sIndex;
913 sIndex = nextIndex;