Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationUiAdjustmentTest.java45 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_differentLength()
60 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_differentLabels()
76 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_differentIcons()
95 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_differentPendingIntent()
120 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_differentChoices()
145 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_differentRemoteInputLabel()
167 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_negative()
176 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_differentSmartReplies()
184 assertThat(NotificationUiAdjustment.needReinflate( in needReinflate_sameSmartReplies()
200 private NotificationUiAdjustment createUiAdjustmentFromSmartActions( in createUiAdjustmentFromSmartActions()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationUiAdjustment.java38 public class NotificationUiAdjustment { class
45 NotificationUiAdjustment( in NotificationUiAdjustment() method in NotificationUiAdjustment
54 public static NotificationUiAdjustment extractFromNotificationEntry( in extractFromNotificationEntry()
56 return new NotificationUiAdjustment( in extractFromNotificationEntry()
61 @NonNull NotificationUiAdjustment oldAdjustment, in needReinflate()
62 @NonNull NotificationUiAdjustment newAdjustment) { in needReinflate()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationRowBinder.java21 import com.android.systemui.statusbar.NotificationUiAdjustment;
50 NotificationUiAdjustment oldAdjustment, in onNotificationRankingUpdated()
51 NotificationUiAdjustment newAdjustment); in onNotificationRankingUpdated()
DNotificationRowBinderImpl.java40 import com.android.systemui.statusbar.NotificationUiAdjustment;
194 NotificationUiAdjustment oldAdjustment, in onNotificationRankingUpdated()
195 NotificationUiAdjustment newAdjustment) { in onNotificationRankingUpdated()
196 if (NotificationUiAdjustment.needReinflate(oldAdjustment, newAdjustment)) { in onNotificationRankingUpdated()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationEntryManager.java37 import com.android.systemui.statusbar.NotificationUiAdjustment;
474 ArrayMap<String, NotificationUiAdjustment> oldAdjustments = new ArrayMap<>(); in updateNotificationRanking()
477 NotificationUiAdjustment adjustment = in updateNotificationRanking()
478 NotificationUiAdjustment.extractFromNotificationEntry(entry); in updateNotificationRanking()
493 NotificationUiAdjustment.extractFromNotificationEntry(entry)); in updateNotificationRanking()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DInflatedSmartReplies.java37 import com.android.systemui.statusbar.NotificationUiAdjustment;
130 return !NotificationUiAdjustment.areDifferent( in areSuggestionsSimilar()