Home | History | Annotate | Download | only in genrb

Lines Matching refs:fChars

36     s->fChars = 0;
45 s->fChars = 0;
75 uprv_free(s->fChars);
76 s->fChars = 0;
94 if(src->fChars == NULL || dst->fChars == NULL){
97 u_memcpy(dst->fChars, src->fChars, src->fLength);
99 dst->fChars[dst->fLength] = 0x0000;
117 s->fChars[len] = 0x0000;
143 uprv_memcpy(dst->fChars + dst->fLength, src->fChars,
146 dst->fChars[dst->fLength] = 0x0000;
163 uprv_memcpy(dst->fChars + dst->fLength, &c,
166 dst->fChars[dst->fLength] = 0x0000;
195 uprv_memcpy(dst->fChars + dst->fLength, src,
198 dst->fChars[dst->fLength] = 0x0000;
211 s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
212 if(s->fChars == 0) {