Home | History | Annotate | Download | only in common

Lines Matching refs:targetLength

1510 UnicodeString::padLeading(int32_t targetLength,
1514 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1519 int32_t start = targetLength - oldLength;
1526 setLength(targetLength);
1532 UnicodeString::padTrailing(int32_t targetLength,
1536 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1541 int32_t length = targetLength;
1545 setLength(targetLength);