Home | History | Annotate | Download | only in utils

Lines Matching full:chrs

230 status_t String16::append(const char16_t* chrs, size_t otherLen)
234 setTo(chrs, otherLen);
244 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t));
252 status_t String16::insert(size_t pos, const char16_t* chrs)
254 return insert(pos, chrs, strlen16(chrs));
257 status_t String16::insert(size_t pos, const char16_t* chrs, size_t len)
261 return setTo(chrs, len);
270 printf("Insert in to %s: pos=%d, len=%d, myLen=%d, chrs=%s\n",
272 len, myLen, String8(chrs, len).string());
282 memcpy(str+pos, chrs, len*sizeof(char16_t));
286 printf("Result (%d chrs): %s\n", size(), String8(*this).string());