Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManager.java174 setExposedGuts(entry.getGuts()); in onDensityOrFontScaleChanged()
244 row.getGuts().setClosedListener((NotificationGuts g) -> { in bindGuts()
294 NotificationGuts guts = row.getGuts(); in initializeSnoozeView()
314 NotificationGuts guts = row.getGuts(); in initializeAppOpsInfo()
344 NotificationGuts guts = row.getGuts(); in initializeNotificationInfo()
396 NotificationGuts guts = row.getGuts(); in initializePartialConversationNotificationInfo()
437 NotificationGuts guts = row.getGuts(); in initializeConversationNotificationInfo()
603 NotificationGuts guts = row.getGuts(); in openGutsInternal()
659 && entry.getGuts() != null in shouldExtendLifetime()
660 && mNotificationGutsExposed == entry.getGuts() in shouldExtendLifetime()
DExpandableNotificationRow.java961 public NotificationGuts getGuts() {
1125 if (getGuts() != null && item.getGutsView() instanceof NotificationGuts.GutsContent) {
1126 getGuts().setGutsContent((NotificationGuts.GutsContent) item.getGutsView());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java727 public NotificationGuts getGuts() { in getGuts() method in NotificationEntry
728 if (row != null) return row.getGuts(); in getGuts()
749 return row != null && row.getGuts() != null && row.getGuts().isExposed(); in areGutsExposed()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManagerTest.java185 when(row.getGuts()).thenReturn(guts); in testOpenAndCloseGuts()
226 when(row.getGuts()).thenReturn(guts); in testChangeDensityOrFontScale()
233 when(entry.getGuts()).thenReturn(guts); in testChangeDensityOrFontScale()
442 doReturn(guts).when(row).getGuts(); in testShouldExtendLifetime()