Lines Matching refs:fChars
34 s->fChars = 0; in ustr_init()
43 s->fChars = 0; in ustr_initChars()
73 uprv_free(s->fChars); in ustr_deinit()
74 s->fChars = 0; in ustr_deinit()
92 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength); in ustr_cpy()
97 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
115 s->fChars[len] = 0x0000; in ustr_setlen()
141 uprv_memcpy(dst->fChars + dst->fLength, src->fChars, in ustr_ncat()
144 dst->fChars[dst->fLength] = 0x0000; in ustr_ncat()
161 uprv_memcpy(dst->fChars + dst->fLength, &c, in ustr_ucat()
164 dst->fChars[dst->fLength] = 0x0000; in ustr_ucat()
193 uprv_memcpy(dst->fChars + dst->fLength, src, in ustr_uscat()
196 dst->fChars[dst->fLength] = 0x0000; in ustr_uscat()
209 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1)); in ustr_resize()
210 if(s->fChars == 0) { in ustr_resize()