Home | History | Annotate | Download | only in i18n

Lines Matching refs:newStart

108     int32_t newStart = 0;
120 newStart = cursorPos;
160 newStart = destLimit - destStart; // relative to start
190 newStart = destLimit - destStart; // relative to start
206 // is within the output string, then use newStart, which has
209 newStart = start;
212 while (n < 0 && newStart > 0) {
213 newStart -= UTF_CHAR_LENGTH(text.char32At(newStart-1));
216 newStart += n;
218 newStart = start + outLen;
221 while (n > 0 && newStart < text.length()) {
222 newStart += UTF_CHAR_LENGTH(text.char32At(newStart));
225 newStart += n;
229 newStart += start;
232 cursor = newStart;