Searched refs:isParseIntegerOnly (Results 1 - 7 of 7) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
H A DNumberFormatTest.java170 assertTrue("Test6: NumberFormat.getIntegerInstance().isParseIntegerOnly() returned wrong value",
171 format.isParseIntegerOnly());
192 "Test12: NumberFormat.getIntegerInstance(new Locale(\"ar\", \"AE\")).isParseIntegerOnly() returned wrong value",
193 format.isParseIntegerOnly());
H A DMessageFormatTest.java484 assertEquals(expectedNumberFormat.isParseIntegerOnly(), actualNumberFormat.isParseIntegerOnly());
H A DDecimalFormatTest.java80 assertFalse("Default value of isParseIntegerOnly is true", format.isParseIntegerOnly());
83 assertTrue(format.isParseIntegerOnly());
88 assertFalse(format.isParseIntegerOnly());
/libcore/luni/src/main/java/java/text/
H A DDecimalFormat.java827 public boolean isParseIntegerOnly() { method in class:DecimalFormat
828 return ndf.isParseIntegerOnly();
879 if (this.isParseIntegerOnly() && number.equals(NEGATIVE_ZERO_DOUBLE)) {
H A DNumberFormat.java539 public boolean isParseIntegerOnly() { method in class:NumberFormat
/libcore/luni/src/test/java/libcore/java/text/
H A DOldNumberFormatTest.java38 assertTrue(format.isParseIntegerOnly());
48 assertTrue(format.isParseIntegerOnly());
61 assertTrue(format.isParseIntegerOnly());
618 nf1.isParseIntegerOnly());
623 nf1.isParseIntegerOnly());
/libcore/luni/src/main/java/libcore/icu/
H A DNativeDecimalFormat.java465 public boolean isParseIntegerOnly() { method in class:NativeDecimalFormat

Completed in 105 milliseconds