Home
last modified time | relevance | path

Searched refs:roundTimeToNearestThreshold (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/utils/
DPowerUtilTest.java200 assertThat(PowerUtil.roundTimeToNearestThreshold(1200, 1000)).isEqualTo(1000); in testRoundToNearestThreshold_roundsCorrectly()
201 assertThat(PowerUtil.roundTimeToNearestThreshold(800, 1000)).isEqualTo(1000); in testRoundToNearestThreshold_roundsCorrectly()
202 assertThat(PowerUtil.roundTimeToNearestThreshold(1000, 1000)).isEqualTo(1000); in testRoundToNearestThreshold_roundsCorrectly()
205 assertThat(PowerUtil.roundTimeToNearestThreshold(80, -200)).isEqualTo(0); in testRoundToNearestThreshold_roundsCorrectly()
206 assertThat(PowerUtil.roundTimeToNearestThreshold(-150, 100)).isEqualTo(200); in testRoundToNearestThreshold_roundsCorrectly()
207 assertThat(PowerUtil.roundTimeToNearestThreshold(-120, 100)).isEqualTo(100); in testRoundToNearestThreshold_roundsCorrectly()
208 assertThat(PowerUtil.roundTimeToNearestThreshold(-200, -75)).isEqualTo(225); in testRoundToNearestThreshold_roundsCorrectly()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/utils/
DPowerUtil.java151 final long roundedTimeMs = roundTimeToNearestThreshold(drainTimeMs, ONE_HOUR_MILLIS); in getMoreThanOneDayString()
171 final long roundedTimeMs = roundTimeToNearestThreshold(drainTimeMs, ONE_HOUR_MILLIS); in getMoreThanOneDayShortString()
214 roundTimeToNearestThreshold( in getDateTimeStringFromMs()
228 roundTimeToNearestThreshold( in getRegularTimeRemainingShortString()
259 public static long roundTimeToNearestThreshold(long drainTime, long threshold) { in roundTimeToNearestThreshold() method in PowerUtil