Home
last modified time | relevance | path

Searched refs:isFastFormattable (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dnumberformat2test.cpp1142 assertTrue("", vf.isFastFormattable(0)); in TestValueFormatterIsFastFormattable()
1143 assertTrue("", vf.isFastFormattable(35)); in TestValueFormatterIsFastFormattable()
1144 assertTrue("", vf.isFastFormattable(-48)); in TestValueFormatterIsFastFormattable()
1145 assertTrue("", vf.isFastFormattable(2147483647)); in TestValueFormatterIsFastFormattable()
1146 assertTrue("", vf.isFastFormattable(-2147483647)); in TestValueFormatterIsFastFormattable()
1147 assertFalse("", vf.isFastFormattable(-2147483648L)); in TestValueFormatterIsFastFormattable()
1154 assertTrue("0", vf.isFastFormattable(0)); in TestValueFormatterIsFastFormattable()
1155 assertTrue("62", vf.isFastFormattable(62)); in TestValueFormatterIsFastFormattable()
1156 assertTrue("999", vf.isFastFormattable(999)); in TestValueFormatterIsFastFormattable()
1157 assertFalse("1000", vf.isFastFormattable(1000)); in TestValueFormatterIsFastFormattable()
[all …]
/external/icu/icu4c/source/i18n/
Dvalueformatter.cpp84 ValueFormatter::isFastFormattable(int32_t value) const { in isFastFormattable() function in ValueFormatter
94 …return fFixedPrecision->isFastFormattable() && fFixedOptions->isFastFormattable() && isNoGrouping(… in isFastFormattable()
Dvalueformatter.h65 UBool isFastFormattable(int32_t value) const;
Dprecision.h119 UBool isFastFormattable() const;
Ddigitformatter.h56 UBool isFastFormattable() const { in isFastFormattable() function
Ddigitaffixesandpadding.cpp45 if (optPluralRules != NULL || fWidth > 0 || !formatter.isFastFormattable(value)) { in formatInt32()
Dprecision.cpp131 FixedPrecision::isFastFormattable() const { in isFastFormattable() function in FixedPrecision