Lines Matching full:len
25 static void ustr_resize(struct UString *s, int32_t len, UErrorCode *status);
101 int32_t len,
107 if(s->fCapacity < (len + 1)) {
108 ustr_resize(s, ALLOCATION(len), status);
113 s->fLength = len;
114 s->fChars[len] = 0x0000;
180 const UChar* src,int len,
186 if(dst->fCapacity < (dst->fLength + len)) {
187 ustr_resize(dst, ALLOCATION(dst->fLength + len), status);
193 sizeof(UChar) * len);
194 dst->fLength += len;
201 int32_t len,
208 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
215 s->fCapacity = len;