Searched refs:numberFormat (Results 1 - 11 of 11) sorted by relevance

/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dplurfmt.cpp35 numberFormat(NULL),
43 numberFormat(NULL),
51 numberFormat(NULL),
61 numberFormat(NULL),
71 numberFormat(NULL),
80 numberFormat(NULL),
91 numberFormat(NULL),
102 numberFormat(NULL),
114 numberFormat(NULL),
126 numberFormat(NUL
[all...]
H A Dnfsubs.h35 const DecimalFormat* numberFormat; member in class:NFSubstitution
54 const DecimalFormat* getNumberFormat() const { return numberFormat; }
257 * @return true if this substitution only points to another ruleSet (no numberFormat)
H A Dreldatefmt.cpp526 : cache(NULL), numberFormat(NULL), pluralRules(NULL) {
532 : cache(NULL), numberFormat(NULL), pluralRules(NULL) {
538 : cache(NULL), numberFormat(NULL), pluralRules(NULL) {
545 numberFormat(other.numberFormat),
548 numberFormat->addRef();
556 SharedObject::copyPtr(other.numberFormat, numberFormat);
566 if (numberFormat != NULL) {
567 numberFormat
639 numberFormat); local
[all...]
H A Dmeasfmt.cpp445 numberFormat(NULL),
458 numberFormat(NULL),
468 numberFormat(other.numberFormat),
473 numberFormat->addRef();
484 SharedObject::copyPtr(other.numberFormat, numberFormat);
494 numberFormat(NULL),
504 if (numberFormat != NULL) {
505 numberFormat
655 numberFormat); local
[all...]
H A Dnfsubs.cpp447 : pos(_pos), ruleSet(NULL), numberFormat(NULL)
488 this->numberFormat = new DecimalFormat(workingDescription, *sym, status);
490 if (this->numberFormat == 0) {
495 delete (DecimalFormat*)this->numberFormat;
496 this->numberFormat = NULL;
499 // this->numberFormat->setDecimalFormatSymbols(formatter->getDecimalFormatSymbols());
510 this->numberFormat = NULL;
522 delete (NumberFormat*)numberFormat; numberFormat = NULL;
559 && (numberFormat
[all...]
H A Dtimezone.cpp1307 NumberFormat* numberFormat = 0; local
1328 numberFormat = NumberFormat::createInstance(success);
1332 numberFormat->setParseIntegerOnly(TRUE);
1333 //numberFormat->setLenient(TRUE); // TODO: May need to set this, depends on latest timezone parsing
1338 numberFormat->parse(id, n, pos);
1340 delete numberFormat;
1348 delete numberFormat;
1355 numberFormat->parse(id, n, pos);
1358 delete numberFormat;
1364 delete numberFormat;
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Dreldatefmt.h413 const SharedNumberFormat *numberFormat; member in class:RelativeDateTimeFormatter
H A Dmeasfmt.h307 const SharedNumberFormat *numberFormat; member in class:MeasureFormat
H A Dplurfmt.h570 NumberFormat* numberFormat; member in class:PluralFormat
/macosx-10.10.1/OpenSSL098-52/src/MacOS/GetHTTPS.src/
H A DCPStringUtils.cpp2641 char numberFormat[64]; local
2644 for (int i = 0;i < inMaxNumIntDigits && numberFormatLength < sizeof(numberFormat) - 1;i++)
2646 numberFormat[numberFormatLength++] = '0';
2649 if (inMaxNumFractDigits > 0 && numberFormatLength < sizeof(numberFormat) - 1)
2651 numberFormat[numberFormatLength++] = '.';
2653 for (int i = 0;i < inMaxNumFractDigits && numberFormatLength < sizeof(numberFormat) - 1;i++)
2655 numberFormat[numberFormatLength++] = '0';
2660 if (numberFormatLength < sizeof(numberFormat) - 1)
2662 numberFormat[numberFormatLength++] = ';';
2665 if (numberFormatLength < sizeof(numberFormat)
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dnumfmtst.cpp7078 LocalPointer<DecimalFormat> numberFormat(static_cast<DecimalFormat*>(
7082 numberFormat->setSignificantDigitsUsed(TRUE);
7083 numberFormat->setMinimumSignificantDigits(3);
7084 numberFormat->setMaximumSignificantDigits(5);
7085 numberFormat->setGroupingUsed(false);
7090 numberFormat->format(input[i], result);
7102 LocalPointer<DecimalFormat> numberFormat(static_cast<DecimalFormat*>(
7106 numberFormat->setSignificantDigitsUsed(TRUE);
7107 numberFormat->setMaximumSignificantDigits(3);
7110 numberFormat
[all...]

Completed in 202 milliseconds