Home | History | Annotate | Download | only in common

Lines Matching refs:targetLength

1420 UnicodeString::padLeading(int32_t targetLength,
1424 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1429 int32_t start = targetLength - oldLength;
1436 setLength(targetLength);
1442 UnicodeString::padTrailing(int32_t targetLength,
1446 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1451 int32_t length = targetLength;
1455 setLength(targetLength);