Searched refs:checkRound (Results 1 – 4 of 4) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | numfmtst.h | 395 double checkRound(DecimalFormat* df, double iValue, double lastParsed);
|
D | numfmtst.cpp | 3179 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding() 3180 lastParsed=checkRound(df, iValue, lastParsed); in checkRounding() 3181 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding() 3185 double NumberFormatTest::checkRound(DecimalFormat* df, double iValue, double lastParsed) { in checkRound() function in NumberFormatTest
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatTest.java | 2521 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed); in checkRounding() 2522 lastParsed = checkRound(nf, iValue, lastParsed); in checkRounding() 2523 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed); in checkRounding() 2527 private BigDecimal checkRound(DecimalFormat nf, BigDecimal iValue, BigDecimal lastParsed) { in checkRound() method in NumberFormatTest
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | NumberFormatTest.java | 2524 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed); in checkRounding() 2525 lastParsed = checkRound(nf, iValue, lastParsed); in checkRounding() 2526 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed); in checkRounding() 2530 private BigDecimal checkRound(DecimalFormat nf, BigDecimal iValue, BigDecimal lastParsed) { in checkRound() method in NumberFormatTest
|