Home | History | Annotate | Download | only in common

Lines Matching refs:cloneArrayIfNeeded

271     if(cloneArrayIfNeeded(length, length, FALSE)) {
1218 if(cloneArrayIfNeeded(len+1)) {
1330 if(cloneArrayIfNeeded() && len > 0) {
1432 // cloneArrayIfNeeded(doCopyArray=FALSE) may change fArray but will not copy the current contents;
1447 if(!cloneArrayIfNeeded(newLength, newLength + (newLength >> 2) + kGrowSize,
1514 cloneArrayIfNeeded(newLength, newLength + (newLength >> 2) + kGrowSize)) {
1577 if(length <= 1 || !cloneArrayIfNeeded()) {
1626 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1648 if(oldLength >= targetLength || !cloneArrayIfNeeded(targetLength)) {
1683 if(minCapacity>=-1 && cloneArrayIfNeeded(minCapacity)) {
1716 UnicodeString::cloneArrayIfNeeded(int32_t newCapacity,
1849 return str.cloneArrayIfNeeded(str.length() + appendCapacity);
1862 if(str.cloneArrayIfNeeded(oldLength + minCapacity, oldLength + desiredCapacityHint)) {