Home | History | Annotate | Download | only in unicode

Lines Matching refs:targetLength

1491    * This function does not write any more than <code>targetLength</code>
1500 * if targetLength is 0
1518 * This function does not write any more than <code>targetLength</code>
1527 * @param targetLength the length of the target buffer
1536 uint32_t targetLength) const;
1576 * This function does not write any more than <code>targetLength</code>
1590 * @param targetLength the length of the target buffer
1604 uint32_t targetLength,
2507 * If the length of this UnicodeString is less than targetLength,
2508 * length() - targetLength copies of padChar will be added to the
2510 * @param targetLength the desired length of the string
2516 UBool padLeading(int32_t targetLength,
2521 * If the length of this UnicodeString is less than targetLength,
2522 * length() - targetLength copies of padChar will be added to the
2524 * @param targetLength the desired length of the string
2530 UBool padTrailing(int32_t targetLength,
2534 * Truncate this UnicodeString to the <TT>targetLength</TT>.
2535 * @param targetLength the desired length of this UnicodeString.
2539 inline UBool truncate(int32_t targetLength);
4491 UnicodeString::truncate(int32_t targetLength)
4493 if(isBogus() && targetLength == 0) {
4497 } else if((uint32_t)targetLength < (uint32_t)length()) {
4498 setLength(targetLength);
4500 fUnion.fFields.fCapacity = targetLength; // not NUL-terminated any more