Home | History | Annotate | Download | only in i18n

Lines Matching refs:newStart

109     int32_t newStart = 0;
121 newStart = cursorPos;
161 newStart = destLimit - destStart; // relative to start
191 newStart = destLimit - destStart; // relative to start
207 // is within the output string, then use newStart, which has
210 newStart = start;
213 while (n < 0 && newStart > 0) {
214 newStart -= U16_LENGTH(text.char32At(newStart-1));
217 newStart += n;
219 newStart = start + outLen;
222 while (n > 0 && newStart < text.length()) {
223 newStart += U16_LENGTH(text.char32At(newStart));
226 newStart += n;
230 newStart += start;
233 cursor = newStart;