Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBatteryStatsImplTest.java291 long[] timesB = null; in testAddCpuTimes() local
292 assertNull(mBatteryStatsImpl.addCpuTimes(timesA, timesB)); in testAddCpuTimes()
295 assertArrayEquals(timesA, mBatteryStatsImpl.addCpuTimes(timesA, timesB)); in testAddCpuTimes()
297 timesB = timesA; in testAddCpuTimes()
299 assertArrayEquals(timesB, mBatteryStatsImpl.addCpuTimes(timesA, timesB)); in testAddCpuTimes()
302 timesA = new long[timesB.length]; in testAddCpuTimes()
304 timesA[i] = expected[i] - timesB[i]; in testAddCpuTimes()
306 assertArrayEquals(expected, mBatteryStatsImpl.addCpuTimes(timesA, timesB)); in testAddCpuTimes()