Lines Matching refs:numberFormat
447 : pos(_pos), ruleSet(NULL), numberFormat(NULL) in NFSubstitution()
488 this->numberFormat = new DecimalFormat(workingDescription, *sym, status); in NFSubstitution()
490 if (this->numberFormat == 0) { in NFSubstitution()
495 delete (DecimalFormat*)this->numberFormat; in NFSubstitution()
496 this->numberFormat = NULL; in NFSubstitution()
510 this->numberFormat = NULL; in NFSubstitution()
522 delete (NumberFormat*)numberFormat; numberFormat = NULL; in ~NFSubstitution()
559 && (numberFormat == NULL
560 ? (rhs.numberFormat == NULL)
561 : (*numberFormat == *rhs.numberFormat));
583 } else if (numberFormat != NULL) { in toString()
584 numberFormat->toPattern(temp); in toString()
612 } else if (numberFormat != NULL) { in doSubstitution()
618 if (numberFormat->getMaximumFractionDigits() == 0) { in doSubstitution()
623 numberFormat->format(numberToFormat, temp); in doSubstitution()
655 } else if (numberFormat != NULL) { in doSubstitution()
657 numberFormat->format(numberToFormat, temp); in doSubstitution()
738 } else if (numberFormat != NULL) { in doParse()
739 numberFormat->parse(text, result, parsePosition); in doParse()