Searched defs:chrs (Results 1 - 1 of 1) sorted by relevance
/system/core/libutils/ |
H A D | String16.cpp | 237 status_t String16::append(const char16_t* chrs, size_t otherLen) argument 241 setTo(chrs, otherLen); 251 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t)); 259 status_t String16::insert(size_t pos, const char16_t* chrs) argument 261 return insert(pos, chrs, strlen16(chrs)); 264 status_t String16::insert(size_t pos, const char16_t* chrs, size_t len) argument 268 return setTo(chrs, len); 277 printf("Insert in to %s: pos=%d, len=%d, myLen=%d, chrs=%s\n", 279 len, myLen, String8(chrs, le [all...] |
Completed in 52 milliseconds