Home | History | Annotate | Download | only in common

Lines Matching refs:minLength

595   int32_t minLength;
606 minLength = length;
609 minLength = srcLength;
613 minLength = length;
625 if(minLength > 0 && chars != srcChars) {
630 result = uprv_memcmp(chars, srcChars, minLength * sizeof(UChar));
641 } while(--minLength > 0);
1576 int32_t minLength = length();
1578 if(newCapacity < minLength) {
1579 minLength = newCapacity;
1580 setLength(minLength);
1582 us_arrayCopy(oldArray, 0, getArrayStart(), 0, minLength);