Home | History | Annotate | Download | only in common

Lines Matching full:newsize

361  * Change the size of this vector as follows: If newSize is smaller,
363 * newSize. If newSize is larger, grow the array, filling in new
366 void UVector::setSize(int32_t newSize, UErrorCode &status) {
368 if (newSize < 0) {
371 if (newSize > count) {
372 if (!ensureCapacity(newSize, status)) {
378 for (i=count; i<newSize; ++i) {
383 for (i=count-1; i>=newSize; --i) {
387 count = newSize;