Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManager.java223 setExposedGuts(entry.getGuts()); in onDensityOrFontScaleChanged()
290 row.getGuts().setClosedListener((NotificationGuts g) -> { in bindGuts()
337 NotificationGuts guts = row.getGuts(); in initializeSnoozeView()
378 NotificationGuts guts = row.getGuts(); in initializeNotificationInfo()
431 NotificationGuts guts = row.getGuts(); in initializePartialConversationNotificationInfo()
471 NotificationGuts guts = row.getGuts(); in initializeConversationNotificationInfo()
640 NotificationGuts guts = row.getGuts(); in openGutsInternal()
DExpandableNotificationRow.java1090 public NotificationGuts getGuts() {
1293 if (getGuts() != null && item.getGutsView() instanceof NotificationGuts.GutsContent) {
1294 getGuts().setGutsContent((NotificationGuts.GutsContent) item.getGutsView());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java729 public NotificationGuts getGuts() { in getGuts() method in NotificationEntry
730 if (row != null) return row.getGuts(); in getGuts()
747 return row != null && row.getGuts() != null && row.getGuts().isExposed(); in areGutsExposed()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManagerTest.java242 when(row.getGuts()).thenReturn(guts); in testOpenAndCloseGuts()
340 when(row.getGuts()).thenReturn(guts); in testChangeDensityOrFontScale()
347 when(entry.getGuts()).thenReturn(guts); in testChangeDensityOrFontScale()
DNotificationGutsManagerWithScenesTest.kt338 Mockito.`when`(entry.getGuts()).thenReturn(guts) in <lambda>()