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

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DNumberFormatTest.java2664 BigDecimal smallIncrement = new BigDecimal("0.00000001");
2666 smallIncrement.multiply(iValue); // scale unless zero
2669 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed);
2671 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java2663 BigDecimal smallIncrement = new BigDecimal("0.00000001");
2665 smallIncrement.multiply(iValue); // scale unless zero
2668 lastParsed = checkRound(nf, iValue.subtract(smallIncrement), lastParsed);
2670 lastParsed = checkRound(nf, iValue.add(smallIncrement), lastParsed);
/external/icu/icu4c/source/test/intltest/
H A Dnumfmtst.cpp3395 double smallIncrement=0.00000001; local
3397 smallIncrement*=iValue;
3400 lastParsed=checkRound(df, iValue-smallIncrement, lastParsed);
3402 lastParsed=checkRound(df, iValue+smallIncrement, lastParsed);

Completed in 144 milliseconds