Home | History | Annotate | Download | only in i18n

Lines Matching defs:fText

130     UChar* fText;
138 : fText(NULL), fType(TEXT), fWidth(0) {
142 if (fText) {
143 uprv_free(fText);
159 result->fText = (UChar*)uprv_malloc((len + 1) * sizeof(UChar));
160 if (result->fText == NULL) {
165 u_strncpy(result->fText, text.getBuffer(), len);
166 result->fText[len] = 0;
228 return fText;