Home | History | Annotate | Download | only in i18n

Lines Matching defs:newStart

107     int32_t newStart = 0;
119 newStart = cursorPos;
159 newStart = destLimit - destStart; // relative to start
189 newStart = destLimit - destStart; // relative to start
205 // is within the output string, then use newStart, which has
208 newStart = start;
211 while (n < 0 && newStart > 0) {
212 newStart -= U16_LENGTH(text.char32At(newStart-1));
215 newStart += n;
217 newStart = start + outLen;
220 while (n > 0 && newStart < text.length()) {
221 newStart += U16_LENGTH(text.char32At(newStart));
224 newStart += n;
228 newStart += start;
231 cursor = newStart;