Lines Matching refs:otherLen
300 const size_t otherLen = other.bytes(); in append() local
304 } else if (otherLen == 0) { in append()
308 return real_append(other.string(), otherLen); in append()
316 status_t String8::append(const char* other, size_t otherLen) in append() argument
319 return setTo(other, otherLen); in append()
320 } else if (otherLen == 0) { in append()
324 return real_append(other, otherLen); in append()
363 status_t String8::real_append(const char* other, size_t otherLen) in real_append() argument
368 ->editResize(myLen+otherLen+1); in real_append()
373 memcpy(str, other, otherLen); in real_append()
374 str[otherLen] = '\0'; in real_append()