Searched defs:myLen (Results 1 - 2 of 2) sorted by relevance

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

Completed in 69 milliseconds