Lines Matching refs:limit
180 int32_t limit=length;
181 while(start<limit && isWhiteSpace(s[start])) {
184 if(start<limit) {
185 // There is non-white space at start; we will not move limit below that,
186 // so we need not test start<limit in the loop.
187 while(isWhiteSpace(s[limit-1])) {
188 --limit;
191 length=limit-start;
200 const UChar *limit=s+length;
205 } while(s<limit);