Home
last modified time | relevance | path

Searched refs:smallIncrement (Results 1 – 3 of 3) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dnumfmtst.cpp3174 double smallIncrement=0.00000001; in checkRounding() local
3176 smallIncrement*=iValue; in checkRounding()
3179 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed); in checkRounding()
3181 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed); in checkRounding()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DNumberFormatTest.java2516 BigDecimal smallIncrement = new BigDecimal("0.00000001"); in checkRounding() local
2518 smallIncrement.multiply(iValue); // scale unless zero in checkRounding()
2521 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed); in checkRounding()
2523 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed); in checkRounding()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DNumberFormatTest.java2519 BigDecimal smallIncrement = new BigDecimal("0.00000001"); in checkRounding() local
2521 smallIncrement.multiply(iValue); // scale unless zero in checkRounding()
2524 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed); in checkRounding()
2526 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed); in checkRounding()