Searched refs:newAdjustment (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/ |
H A D | NotifUiAdjustment.kt | 42 newAdjustment: NotifUiAdjustment 44 oldAdjustment === newAdjustment -> false 45 oldAdjustment.isConversation != newAdjustment.isConversation -> true 46 oldAdjustment.isSnoozeEnabled != newAdjustment.isSnoozeEnabled -> true 47 oldAdjustment.isMinimized != newAdjustment.isMinimized -> true 48 oldAdjustment.needsRedaction != newAdjustment.needsRedaction -> true 49 areDifferent(oldAdjustment.smartActions, newAdjustment.smartActions) -> true 50 newAdjustment.smartReplies != oldAdjustment.smartReplies -> true
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | PreparationCoordinator.java | 301 if (needToReinflate(entry, newAdjustment, errorIfNoOldAdjustment)) { 309 inflateEntry(entry, newAdjustment, "entryAdded"); 312 rebind(entry, newAdjustment, "entryUpdated"); 321 if (needToReinflate(entry, newAdjustment, null)) { 340 return NotifUiAdjustment.needReinflate(oldAdjustment, newAdjustment); 344 NotifUiAdjustment newAdjustment, 348 mInflationAdjustments.put(entry, newAdjustment); 350 NotifInflater.Params params = getInflaterParams(newAdjustment, reason); 356 NotifUiAdjustment newAdjustment, 358 mInflationAdjustments.put(entry, newAdjustment); [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | NotificationUiAdjustment.java | 66 @NonNull NotificationUiAdjustment newAdjustment) { in needReinflate() argument 67 if (oldAdjustment == newAdjustment) { in needReinflate() 70 if (oldAdjustment.isConversation != newAdjustment.isConversation) { in needReinflate() 73 if (areDifferent(oldAdjustment.smartActions, newAdjustment.smartActions)) { in needReinflate() 76 if (!newAdjustment.smartReplies.equals(oldAdjustment.smartReplies)) { in needReinflate()
|