Lines Matching refs:fCount
75 fCount(0) in ChoiceFormat()
90 fCount(0) in ChoiceFormat()
104 fCount(0) in ChoiceFormat()
132 fCount(0) in ChoiceFormat()
144 if (fCount != thatAlias.fCount) return FALSE; in operator ==()
147 for (int32_t i = 0; i < fCount; i++) { in operator ==()
164 fCount = that.fCount; in operator =()
172 fChoiceLimits = (double*) uprv_malloc( sizeof(double) * fCount); in operator =()
173 fClosures = (UBool*) uprv_malloc( sizeof(UBool) * fCount); in operator =()
174 fChoiceFormats = new UnicodeString[fCount]; in operator =()
191 uprv_arrayCopy(that.fChoiceLimits, fChoiceLimits, fCount); in operator =()
192 uprv_arrayCopy(that.fClosures, fClosures, fCount); in operator =()
193 uprv_arrayCopy(that.fChoiceFormats, fChoiceFormats, fCount); in operator =()
209 fCount = 0; in ~ChoiceFormat()
443 fCount = count; in applyPattern()
465 for (int32_t i = 0; i < fCount; ++i) { in toPattern()
547 fCount = cnt; in setChoices()
548 fChoiceLimits = (double*) uprv_malloc( sizeof(double) * fCount); in setChoices()
549 fClosures = (UBool*) uprv_malloc( sizeof(UBool) * fCount); in setChoices()
550 fChoiceFormats = new UnicodeString[fCount]; in setChoices()
569 uprv_arrayCopy(limits, fChoiceLimits, fCount); in setChoices()
570 uprv_arrayCopy(formats, fChoiceFormats, fCount); in setChoices()
573 uprv_arrayCopy(closures, fClosures, fCount); in setChoices()
576 for (i=0; i<fCount; ++i) { in setChoices()
588 cnt = fCount; in getLimits()
598 cnt = fCount; in getClosures()
608 cnt = fCount; in getFormats()
648 for (i = 0; i < fCount; ++i) { in format()
720 for (int i = 0; i < fCount; ++i) { in parse()