Lines Matching full:targetlength
1622 UnicodeString::padLeading(int32_t targetLength,
1626 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1631 int32_t start = targetLength - oldLength;
1638 setLength(targetLength);
1644 UnicodeString::padTrailing(int32_t targetLength,
1648 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1653 int32_t length = targetLength;
1657 setLength(targetLength);