Home | History | Annotate | Download | only in i18n

Lines Matching refs:limit

102     // start and limit of the input range
104 int32_t limit = offsets.limit;
105 if(start >= limit) {
112 * In incremental mode, a chunk that ends with offsets.limit
119 int32_t length = limit - start;
120 _Replaceable_extractBetween(text, start, limit, input.getBuffer(length));
126 text.handleReplaceBetween(start, limit, normalized);
130 offsets.limit += delta;
131 offsets.start = limit + delta;
146 } while(start < limit && !fNorm2.hasBoundaryBefore(c = text.char32At(start)));
147 if(start == limit && isIncremental && !fNorm2.hasBoundaryAfter(c)) {
148 // stop in incremental mode when we reach the input limit
165 limit += delta;
167 } while(start < limit);
170 offsets.contextLimit += limit - offsets.limit;
171 offsets.limit = limit;