Home
last modified time | relevance | path

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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
DBigDecimalTest.java330 BigDecimal fl2 = new BigDecimal(2.345E37); in test_floatValue() local
331 assertTrue("the float representation of bigDecimal 2.345E37", fl2 in test_floatValue()
333 fl2 = new BigDecimal(-1.00E-44); in test_floatValue()
334 assertTrue("the float representation of bigDecimal -1.00E-44", fl2 in test_floatValue()
336 fl2 = new BigDecimal(-3E12); in test_floatValue()
337 assertTrue("the float representation of bigDecimal -3E12", fl2 in test_floatValue()
339 fl2 = new BigDecimal(Double.MAX_VALUE); in test_floatValue()
342 fl2.floatValue() == Float.POSITIVE_INFINITY); in test_floatValue()
343 fl2 = new BigDecimal(-Double.MAX_VALUE); in test_floatValue()
346 fl2.floatValue() == Float.NEGATIVE_INFINITY); in test_floatValue()
/libcore/ojluni/src/main/java/sun/nio/ch/
DFileLockTable.java73 public abstract void replace(FileLock fl1, FileLock fl2); in replace() argument
DFileChannelImpl.java1211 public void replace(FileLock fl1, FileLock fl2) { in replace() argument
1214 lockList.add(fl2); in replace()