Home | History | Annotate | Download | only in genrb

Lines Matching refs:fChars

34     s->fChars = 0;
43 s->fChars = 0;
73 uprv_free(s->fChars);
74 s->fChars = 0;
92 if(src->fChars == NULL || dst->fChars == NULL){
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
97 dst->fChars[dst->fLength] = 0x0000;
115 s->fChars[len] = 0x0000;
141 uprv_memcpy(dst->fChars + dst->fLength, src->fChars,
144 dst->fChars[dst->fLength] = 0x0000;
161 uprv_memcpy(dst->fChars + dst->fLength, &c,
164 dst->fChars[dst->fLength] = 0x0000;
193 uprv_memcpy(dst->fChars + dst->fLength, src,
196 dst->fChars[dst->fLength] = 0x0000;
209 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
210 if(s->fChars == 0) {