Home | History | Annotate | Download | only in libutils

Lines Matching defs:otherLen

218     const size_t otherLen = other.size();
222 } else if (otherLen == 0) {
227 ->editResize((myLen+otherLen+1)*sizeof(char16_t));
230 memcpy(str+myLen, other, (otherLen+1)*sizeof(char16_t));
237 status_t String16::append(const char16_t* chrs, size_t otherLen)
241 setTo(chrs, otherLen);
243 } else if (otherLen == 0) {
248 ->editResize((myLen+otherLen+1)*sizeof(char16_t));
251 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t));
252 str[myLen+otherLen] = 0;