Home
last modified time | relevance | path

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

/system/core/libutils/
DString16.cpp218 const size_t myLen = size(); in append() local
220 if (myLen == 0) { in append()
228 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()
231 memcpy(str+myLen, other, (otherLen+1)*sizeof(char16_t)); in append()
240 const size_t myLen = size(); in append() local
241 if (myLen == 0) { in append()
249 ->editResize((myLen+otherLen+1)*sizeof(char16_t)); in append()
252 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t)); in append()
253 str[myLen+otherLen] = 0; in append()
267 const size_t myLen = size(); in insert() local
[all …]
DString8.cpp363 const size_t myLen = bytes(); in real_append() local
366 ->editResize(myLen+otherLen+1); in real_append()
370 str += myLen; in real_append()