Searched refs:displayVotes (Results 1 – 3 of 3) sorted by relevance
73 SparseArray<Vote> displayVotes = mStorage.getVotes(DISPLAY_ID); in testAddsProximityVoteIfSensorManagerProximityActive() local74 assertThat(displayVotes.size()).isEqualTo(1); in testAddsProximityVoteIfSensorManagerProximityActive()75 Vote vote = displayVotes.get(Vote.PRIORITY_PROXIMITY); in testAddsProximityVoteIfSensorManagerProximityActive()89 SparseArray<Vote> displayVotes = mStorage.getVotes(DISPLAY_ID); in testDoesNotAddProximityVoteIfSensorManagerProximityNotActive() local90 assertThat(displayVotes.size()).isEqualTo(0); in testDoesNotAddProximityVoteIfSensorManagerProximityNotActive()99 SparseArray<Vote> displayVotes = mStorage.getVotes(DISPLAY_ID); in testDoesNotAddProximityVoteIfDoze() local100 assertThat(displayVotes.size()).isEqualTo(0); in testDoesNotAddProximityVoteIfDoze()
104 SparseArray<Vote> displayVotes = mStorage.getVotes(DISPLAY_ID); in testNotifyWithDefaultVotesForCritical() local105 assertEquals(1, displayVotes.size()); in testNotifyWithDefaultVotesForCritical()107 Vote vote = displayVotes.get(Vote.PRIORITY_SKIN_TEMPERATURE); in testNotifyWithDefaultVotesForCritical()173 SparseArray<Vote> displayVotes = mStorage.getVotes(DISPLAY_ID); in testNotifiesWithConfigVotes() local174 assertEquals(1, displayVotes.size()); in testNotifiesWithConfigVotes()175 Vote vote = displayVotes.get(Vote.PRIORITY_SKIN_TEMPERATURE); in testNotifiesWithConfigVotes()196 SparseArray<Vote> displayVotes = mStorage.getVotes(DISPLAY_ID_ADDED); in testDisplayAdded() local198 Vote vote = displayVotes.get(Vote.PRIORITY_SKIN_TEMPERATURE); in testDisplayAdded()
67 SparseArray<Vote> displayVotes = mVotesByDisplay.get(displayId); in getVotes() local68 votesLocal = displayVotes != null ? displayVotes.clone() : new SparseArray<>(); in getVotes()