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.java78 assertThat(PowerUtil.roundTimeToNearestThreshold(1200, 1000)).isEqualTo(1000); in roundTimeToNearestThreshold_roundsCorrectly()
79 assertThat(PowerUtil.roundTimeToNearestThreshold(800, 1000)).isEqualTo(1000); in roundTimeToNearestThreshold_roundsCorrectly()
80 assertThat(PowerUtil.roundTimeToNearestThreshold(1000, 1000)).isEqualTo(1000); in roundTimeToNearestThreshold_roundsCorrectly()
83 assertThat(PowerUtil.roundTimeToNearestThreshold(80, -200)).isEqualTo(0); in roundTimeToNearestThreshold_roundsCorrectly()
84 assertThat(PowerUtil.roundTimeToNearestThreshold(-150, 100)).isEqualTo(200); in roundTimeToNearestThreshold_roundsCorrectly()
85 assertThat(PowerUtil.roundTimeToNearestThreshold(-120, 100)).isEqualTo(100); in roundTimeToNearestThreshold_roundsCorrectly()
86 assertThat(PowerUtil.roundTimeToNearestThreshold(-200, -75)).isEqualTo(225); in roundTimeToNearestThreshold_roundsCorrectly()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/utils/
DPowerUtil.java107 final long roundedTimeMs = roundTimeToNearestThreshold(drainTimeMs, ONE_HOUR_MILLIS); in getMoreThanOneDayString()
127 final long roundedTimeMs = roundTimeToNearestThreshold(drainTimeMs, ONE_HOUR_MILLIS); in getMoreThanOneDayShortString()
171 roundTimeToNearestThreshold( in getDateTimeStringFromMs()
185 roundTimeToNearestThreshold( in getRegularTimeRemainingShortString()
216 public static long roundTimeToNearestThreshold(long drainTime, long threshold) { in roundTimeToNearestThreshold() method in PowerUtil