Lines Matching defs:oldLength

1137                   int32_t oldLength,
1147 oldText.pinIndices(oldStart, oldLength);
1150 if(oldLength == 0) {
1154 while(length > 0 && length >= oldLength) {
1155 int32_t pos = indexOf(oldText, oldStart, oldLength, start, length);
1161 replace(pos, oldLength, newText, newStart, newLength);
1162 length -= pos + oldLength - start;
1393 int32_t oldLength = this->length();
1402 setLength(oldLength - length);
1406 if(length >= (oldLength - start)) {
1415 if(start == oldLength) {
1430 int32_t newLength = oldLength - length + srcLength;
1439 u_memcpy(oldStackBuffer, fUnion.fStackFields.fBuffer, oldLength);
1461 oldLength - (start + length));
1466 oldLength - (start + length));
1510 int32_t oldLength = length();
1511 int32_t newLength = oldLength + srcLength;
1523 if(srcChars + srcStart != newArray + oldLength) {
1524 us_arrayCopy(srcChars, srcStart, newArray, oldLength, srcLength);
1625 int32_t oldLength = length();
1626 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1631 int32_t start = targetLength - oldLength;
1632 us_arrayCopy(array, 0, array, start, oldLength);
1647 int32_t oldLength = length();
1648 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1654 while(--length >= oldLength) {
1756 int32_t oldLength = length();
1764 us_arrayCopy(fUnion.fStackFields.fBuffer, 0, oldStackBuffer, 0, oldLength);
1781 int32_t minLength = oldLength;
1861 int32_t oldLength = str.length();
1862 if(str.cloneArrayIfNeeded(oldLength + minCapacity, oldLength + desiredCapacityHint)) {
1863 *resultCapacity = str.getCapacity() - oldLength;
1864 return str.getArrayStart() + oldLength;