Searched refs:roundTimeToNearestThreshold (Results 1 – 2 of 2) sorted by relevance
/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/utils/ |
H A D | PowerUtilTest.java | 231 assertThat(PowerUtil.roundTimeToNearestThreshold(1200, 1000)).isEqualTo(1000); in testRoundToNearestThreshold_roundsCorrectly() 232 assertThat(PowerUtil.roundTimeToNearestThreshold(800, 1000)).isEqualTo(1000); in testRoundToNearestThreshold_roundsCorrectly() 233 assertThat(PowerUtil.roundTimeToNearestThreshold(1000, 1000)).isEqualTo(1000); in testRoundToNearestThreshold_roundsCorrectly() 236 assertThat(PowerUtil.roundTimeToNearestThreshold(80, -200)).isEqualTo(0); in testRoundToNearestThreshold_roundsCorrectly() 237 assertThat(PowerUtil.roundTimeToNearestThreshold(-150, 100)).isEqualTo(200); in testRoundToNearestThreshold_roundsCorrectly() 238 assertThat(PowerUtil.roundTimeToNearestThreshold(-120, 100)).isEqualTo(100); in testRoundToNearestThreshold_roundsCorrectly() 239 assertThat(PowerUtil.roundTimeToNearestThreshold(-200, -75)).isEqualTo(225); in testRoundToNearestThreshold_roundsCorrectly()
|
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/utils/ |
H A D | PowerUtil.java | 152 final long roundedTimeMs = roundTimeToNearestThreshold(drainTimeMs, ONE_HOUR_MILLIS); in getMoreThanOneDayString() 172 final long roundedTimeMs = roundTimeToNearestThreshold(drainTimeMs, ONE_HOUR_MILLIS); in getMoreThanOneDayShortString() 216 roundTimeToNearestThreshold( in getDateTimeStringFromMs() 230 roundTimeToNearestThreshold( in getRegularTimeRemainingShortString() 261 public static long roundTimeToNearestThreshold(long drainTime, long threshold) { in roundTimeToNearestThreshold() method in PowerUtil
|