Home | History | Annotate | Download | only in genrb

Lines Matching refs:fChars

33     s->fChars = 0;
42 s->fChars = 0;
72 uprv_free(s->fChars);
73 s->fChars = 0;
91 if(src->fChars == NULL || dst->fChars == NULL){
94 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
96 dst->fChars[dst->fLength] = 0x0000;
114 s->fChars[len] = 0x0000;
140 uprv_memcpy(dst->fChars + dst->fLength, src->fChars,
143 dst->fChars[dst->fLength] = 0x0000;
160 uprv_memcpy(dst->fChars + dst->fLength, &c,
163 dst->fChars[dst->fLength] = 0x0000;
192 uprv_memcpy(dst->fChars + dst->fLength, src,
195 dst->fChars[dst->fLength] = 0x0000;
208 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
209 if(s->fChars == 0) {