Home
last modified time | relevance | path

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

/system/core/libutils/
DString16.cpp217 const size_t myLen = size(); in append() local
219 if (myLen == 0) { in append()
227 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()
230 memcpy(str+myLen, other, (otherLen+1)*sizeof(char16_t)); in append()
239 const size_t myLen = size(); in append() local
240 if (myLen == 0) { in append()
248 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()
251 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t)); in append()
252 str[myLen+otherLen] = 0; in append()
266 const size_t myLen = size(); in insert() local
[all …]
DString8.cpp357 const size_t myLen = bytes(); in real_append() local
360 ->editResize(myLen+otherLen+1); in real_append()
364 str += myLen; in real_append()