Home
last modified time | relevance | path

Searched refs:getMax (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/
DDoubleSummaryStatisticsTest.java32 assertEquals(Double.NEGATIVE_INFINITY, dss.getMax()); in test_empty()
51 assertEquals(100.0d, dssCombined.getMax()); in test_combine()
79 assertEquals(100.0d, dss1.getMax()); in test_getMax()
82 assertEquals(Double.NaN, dss1.getMax()); in test_getMax()
DIntSummaryStatisticsTest.java32 assertEquals(Integer.MIN_VALUE, iss.getMax()); in test_empty()
52 assertEquals(100, issCombined.getMax()); in test_combine()
74 assertEquals(100, iss1.getMax()); in test_getMax()
DLongSummaryStatisticsTest.java32 assertEquals(Long.MIN_VALUE, lss.getMax()); in test_empty()
62 assertEquals(100L, lssCombined.getMax()); in test_combine()
84 assertEquals(100L, lss1.getMax()); in test_getMax()
/libcore/ojluni/src/main/java/java/util/
DIntSummaryStatistics.java138 public final int getMax() { in getMax() method in IntSummaryStatistics
168 getMax()); in toString()
DLongSummaryStatistics.java150 public final long getMax() { in getMax() method in LongSummaryStatistics
180 getMax()); in toString()
DDoubleSummaryStatistics.java187 public final double getMax() { in getMax() method in DoubleSummaryStatistics
230 getMax()); in toString()
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
DSummaryStatisticsTest.java55 assertEquals(stats.getMax(), 1000); in testIntStatistics()
70 assertEquals(stats.getMax(), 1000L); in testLongStatistics()
85 assertEquals(stats.getMax(), 1000.0); in testDoubleStatistics()