Searched refs:getMax (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/test/java/libcore/java/util/ |
D | DoubleSummaryStatisticsTest.java | 32 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()
|
D | IntSummaryStatisticsTest.java | 32 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()
|
D | LongSummaryStatisticsTest.java | 32 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/ |
D | IntSummaryStatistics.java | 138 public final int getMax() { in getMax() method in IntSummaryStatistics 168 getMax()); in toString()
|
D | LongSummaryStatistics.java | 150 public final long getMax() { in getMax() method in LongSummaryStatistics 180 getMax()); in toString()
|
D | DoubleSummaryStatistics.java | 187 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/ |
D | SummaryStatisticsTest.java | 55 assertEquals(stats.getMax(), 1000); in testIntStatistics() 70 assertEquals(stats.getMax(), 1000L); in testLongStatistics() 85 assertEquals(stats.getMax(), 1000.0); in testDoubleStatistics()
|