Home | History | Annotate | Download | only in libutils

Lines Matching refs:otherLen

219     const size_t otherLen = other.size();
223 } else if (otherLen == 0) {
228 ->editResize((myLen+otherLen+1)*sizeof(char16_t));
231 memcpy(str+myLen, other, (otherLen+1)*sizeof(char16_t));
238 status_t String16::append(const char16_t* chrs, size_t otherLen)
242 setTo(chrs, otherLen);
244 } else if (otherLen == 0) {
249 ->editResize((myLen+otherLen+1)*sizeof(char16_t));
252 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t));
253 str[myLen+otherLen] = 0;