Home | History | Annotate | Download | only in common

Lines Matching refs:targetLength

1388 UnicodeString::padLeading(int32_t targetLength,
1392 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1397 int32_t start = targetLength - oldLength;
1404 setLength(targetLength);
1410 UnicodeString::padTrailing(int32_t targetLength,
1414 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1419 int32_t length = targetLength;
1423 setLength(targetLength);