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.java131 setExposedGuts(entry.getGuts()); in onDensityOrFontScaleChanged()
196 row.getGuts().setClosedListener((NotificationGuts g) -> { in bindGuts()
240 NotificationGuts guts = row.getGuts(); in initializeSnoozeView()
260 NotificationGuts guts = row.getGuts(); in initializeAppOpsInfo()
286 NotificationGuts guts = row.getGuts(); in initializeNotificationInfo()
433 NotificationGuts guts = row.getGuts(); in openGutsInternal()
489 && entry.getGuts() != null in shouldExtendLifetime()
490 && mNotificationGutsExposed == entry.getGuts() in shouldExtendLifetime()
DExpandableNotificationRow.java945 public NotificationGuts getGuts() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java658 public NotificationGuts getGuts() { in getGuts() method in NotificationEntry
659 if (row != null) return row.getGuts(); in getGuts()
680 return row != null && row.getGuts() != null && row.getGuts().isExposed(); in areGutsExposed()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationGutsManagerTest.java153 when(row.getGuts()).thenReturn(guts); in testOpenAndCloseGuts()
194 when(row.getGuts()).thenReturn(guts); in testChangeDensityOrFontScale()
201 when(entry.getGuts()).thenReturn(guts); in testChangeDensityOrFontScale()
462 doReturn(guts).when(row).getGuts(); in testShouldExtendLifetime()