HomeSort by relevance Sort by last modified time
    Searched refs:otherLen (Results 1 - 4 of 4) sorted by null

  /frameworks/base/libs/utils/
String8.cpp 274 const size_t otherLen = other.bytes();
278 } else if (otherLen == 0) {
282 return real_append(other.string(), otherLen);
290 status_t String8::append(const char* other, size_t otherLen)
293 return setTo(other, otherLen);
294 } else if (otherLen == 0) {
298 return real_append(other, otherLen);
328 status_t String8::real_append(const char* other, size_t otherLen)
333 ->editResize(myLen+otherLen+1);
338 memcpy(str, other, otherLen);
    [all...]
String16.cpp 211 const size_t otherLen = other.size();
215 } else if (otherLen == 0) {
220 ->editResize((myLen+otherLen+1)*sizeof(char16_t));
223 memcpy(str+myLen, other, (otherLen+1)*sizeof(char16_t));
230 status_t String16::append(const char16_t* chrs, size_t otherLen)
234 setTo(chrs, otherLen);
236 } else if (otherLen == 0) {
241 ->editResize((myLen+otherLen+1)*sizeof(char16_t));
244 memcpy(str+myLen, chrs, otherLen*sizeof(char16_t));
245 str[myLen+otherLen] = 0
    [all...]
  /external/icu4c/common/unicode/
uniset.h     [all...]
  /external/icu4c/common/
uniset.cpp     [all...]

Completed in 111 milliseconds