Home | History | Annotate | Download | only in common

Lines Matching full:minlength

662   int32_t minLength;
673 minLength = length;
676 minLength = srcLength;
680 minLength = length;
692 if(minLength > 0 && chars != srcChars) {
697 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
708 } while(--minLength > 0);
1781 int32_t minLength = oldLength;
1783 if(newCapacity < minLength) {
1784 minLength = newCapacity;
1787 us_arrayCopy(oldArray, 0, getArrayStart(), 0, minLength);
1789 setLength(minLength);