Searched refs:isFastFormattable (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | numberformat2test.cpp | 1142 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/ |
D | valueformatter.cpp | 84 ValueFormatter::isFastFormattable(int32_t value) const { in isFastFormattable() function in ValueFormatter 94 …return fFixedPrecision->isFastFormattable() && fFixedOptions->isFastFormattable() && isNoGrouping(… in isFastFormattable()
|
D | valueformatter.h | 65 UBool isFastFormattable(int32_t value) const;
|
D | precision.h | 119 UBool isFastFormattable() const;
|
D | digitformatter.h | 56 UBool isFastFormattable() const { in isFastFormattable() function
|
D | digitaffixesandpadding.cpp | 45 if (optPluralRules != NULL || fWidth > 0 || !formatter.isFastFormattable(value)) { in formatInt32()
|
D | precision.cpp | 131 FixedPrecision::isFastFormattable() const { in isFastFormattable() function in FixedPrecision
|