Lines Matching refs:limits
87 ChoiceFormat::ChoiceFormat(const double* limits, in ChoiceFormat() argument
93 setChoices(limits, NULL, formats, cnt, constructorErrorCode); in ChoiceFormat()
98 ChoiceFormat::ChoiceFormat(const double* limits, in ChoiceFormat() argument
105 setChoices(limits, closures, formats, cnt, constructorErrorCode); in ChoiceFormat()
253 ChoiceFormat::setChoices( const double* limits, in setChoices() argument
258 setChoices(limits, NULL, formats, cnt, errorCode); in setChoices()
264 ChoiceFormat::setChoices( const double* limits, in setChoices() argument
270 setChoices(limits, closures, formats, cnt, errorCode); in setChoices()
274 ChoiceFormat::setChoices(const double* limits, in setChoices() argument
282 if (limits == NULL || formats == NULL) { in setChoices()
294 if (uprv_isPositiveInfinity(limits[i])) { in setChoices()
296 } else if (uprv_isNegativeInfinity(limits[i])) { in setChoices()
300 result += dtos(limits[i], buf); in setChoices()