• Home
  • Raw
  • Download

Lines Matching refs:fChoiceFormats

74   fChoiceFormats(0),  in ChoiceFormat()
89 fChoiceFormats(0), in ChoiceFormat()
103 fChoiceFormats(0), in ChoiceFormat()
116 fChoiceFormats(0) in ChoiceFormat()
131 fChoiceFormats(0), in ChoiceFormat()
150 (fChoiceFormats[i] != thatAlias.fChoiceFormats[i])) in operator ==()
169 delete [] fChoiceFormats; in operator =()
170 fChoiceFormats = NULL; in operator =()
174 fChoiceFormats = new UnicodeString[fCount]; in operator =()
177 if (!fChoiceLimits || !fClosures || !fChoiceFormats) { in operator =()
186 if (fChoiceFormats) { in operator =()
187 delete[] fChoiceFormats; in operator =()
188 fChoiceFormats = NULL; in operator =()
193 uprv_arrayCopy(that.fChoiceFormats, fChoiceFormats, fCount); in operator =()
207 delete [] fChoiceFormats; in ~ChoiceFormat()
208 fChoiceFormats = NULL; in ~ChoiceFormat()
442 delete[] fChoiceFormats; in applyPattern()
446 fChoiceFormats = newFormats; in applyPattern()
486 const UnicodeString& text = fChoiceFormats[i]; in toPattern()
541 if (fChoiceFormats) { in setChoices()
542 delete [] fChoiceFormats; in setChoices()
550 fChoiceFormats = new UnicodeString[fCount]; in setChoices()
553 if (!fChoiceLimits || !fClosures || !fChoiceFormats) { in setChoices()
562 if (fChoiceFormats) { in setChoices()
563 delete[] fChoiceFormats; in setChoices()
564 fChoiceFormats = NULL; in setChoices()
570 uprv_arrayCopy(formats, fChoiceFormats, fCount); in setChoices()
609 return fChoiceFormats; in getFormats()
664 appendTo += fChoiceFormats[i]; in format()
721 int32_t len = fChoiceFormats[i].length(); in parse()
722 if (text.compare(start, len, fChoiceFormats[i]) == 0) { in parse()