Lines Matching refs:fChars
36 s->fChars = 0; in ustr_init()
45 s->fChars = 0; in ustr_initChars()
75 uprv_free(s->fChars); in ustr_deinit()
76 s->fChars = 0; in ustr_deinit()
94 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
97 u_memcpy(dst->fChars, src->fChars, src->fLength); in ustr_cpy()
99 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
117 s->fChars[len] = 0x0000; in ustr_setlen()
143 uprv_memcpy(dst->fChars + dst->fLength, src->fChars, in ustr_ncat()
146 dst->fChars[dst->fLength] = 0x0000; in ustr_ncat()
163 uprv_memcpy(dst->fChars + dst->fLength, &c, in ustr_ucat()
166 dst->fChars[dst->fLength] = 0x0000; in ustr_ucat()
195 uprv_memcpy(dst->fChars + dst->fLength, src, in ustr_uscat()
198 dst->fChars[dst->fLength] = 0x0000; in ustr_uscat()
211 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1)); in ustr_resize()
212 if(s->fChars == 0) { in ustr_resize()