Home
last modified time | relevance | path

Searched refs:myLen (Results 1 – 2 of 2) sorted by relevance

/system/core/libutils/
DString16.cpp223 const size_t myLen = size(); in append() local
225 if (myLen == 0) { in append()
233 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()
236 memcpy(str+myLen, other, (otherLen+1)*sizeof(char16_t)); in append()
245 const size_t myLen = size(); in append() local
246 if (myLen == 0) { in append()
254 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()
257 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t)); in append()
258 str[myLen+otherLen] = 0; in append()
272 const size_t myLen = size(); in insert() local
[all …]
DString8.cpp365 const size_t myLen = bytes(); in real_append() local
368 ->editResize(myLen+otherLen+1); in real_append()
372 str += myLen; in real_append()