Home | History | Annotate | Download | only in common

Lines Matching refs:newLength

1084                   int32_t newLength)
1092 newText.pinIndices(newStart, newLength);
1105 replace(pos, oldLength, newText, newStart, newLength);
1107 start = pos + newLength;
1336 int32_t newLength;
1343 newLength = oldLength + srcLength;
1344 if(newLength <= getCapacity() && isBufferWritable()) {
1356 setLength(newLength);
1367 newLength = oldLength - length + srcLength;
1374 if((fFlags&kUsingStackBuffer) && (newLength > US_STACKBUF_SIZE)) {
1385 if(!cloneArrayIfNeeded(newLength, newLength + (newLength >> 2) + kGrowSize,
1410 setLength(newLength);
1583 UnicodeString::releaseBuffer(int32_t newLength) {
1584 if(fFlags&kOpenGetBuffer && newLength>=-1) {
1587 if(newLength==-1) {
1593 newLength=(int32_t)(p-array);
1594 } else if(newLength>capacity) {
1595 newLength=capacity;
1597 setLength(newLength);