Lines Matching refs:numberFormat
421 : pos(_pos), ruleSet(NULL), numberFormat(NULL) in NFSubstitution()
462 this->numberFormat = new DecimalFormat(workingDescription, *sym, status); in NFSubstitution()
464 if (this->numberFormat == 0) { in NFSubstitution()
469 delete (DecimalFormat*)this->numberFormat; in NFSubstitution()
470 this->numberFormat = NULL; in NFSubstitution()
484 this->numberFormat = NULL; in NFSubstitution()
496 delete (NumberFormat*)numberFormat; numberFormat = NULL; in ~NFSubstitution()
533 && (numberFormat == NULL
534 ? (rhs.numberFormat == NULL)
535 : (*numberFormat == *rhs.numberFormat));
557 } else if (numberFormat != NULL) { in toString()
558 numberFormat->toPattern(temp); in toString()
586 } else if (numberFormat != NULL) { in doSubstitution()
592 if (numberFormat->getMaximumFractionDigits() == 0) { in doSubstitution()
597 numberFormat->format(numberToFormat, temp); in doSubstitution()
629 } else if (numberFormat != NULL) { in doSubstitution()
631 numberFormat->format(numberToFormat, temp); in doSubstitution()
712 } else if (numberFormat != NULL) { in doParse()
713 numberFormat->parse(text, result, parsePosition); in doParse()