Lines Matching defs:length
106 int32_t length=str.length();
107 for(int32_t i=0; i<length; ++i) {
350 // ICU-13727: Limit input length for n^2 algorithm
356 u_strToPunycode(s.getBuffer(), s.length(), dest, UPRV_LENGTHOF(dest), nullptr, &errorCode);
359 u_strFromPunycode(s.getBuffer(), s.length(), dest, UPRV_LENGTHOF(dest), nullptr, &errorCode);
537 // label length 63: xn--1234567890123456789012345678901234567890123456789012345-9te
734 // ToUnicode does not set length-overflow errors.
1024 int32_t length = (int32_t)(field[1] - field[0]);
1025 return UnicodeString::fromUTF8(StringPiece(field[0], length)).trim().unescape();
1032 int32_t length = (int32_t)(field[1] - start);
1033 while (length > 0 && (start[length - 1] == u' ' || start[length - 1] == u'\t')) {
1034 --length;
1036 status.assign(start, length);