Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
H A DNotificationMemoryViewWalker.kt67 getViewUsage(ViewType.PRIVATE_EXPANDED_VIEW, row.privateLayout?.expandedChild),
70 row.privateLayout?.contractedChild
72 getViewUsage(ViewType.PRIVATE_HEADS_UP_VIEW, row.privateLayout?.headsUpChild),
104 row.privateLayout?.expandedChild,
105 row.privateLayout?.contractedChild,
106 row.privateLayout?.headsUpChild,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentInflater.java384 NotificationContentView privateLayout = row.getPrivateLayout(); in apply() local
407 privateLayout, privateLayout.getContractedChild(), in apply()
408 privateLayout.getVisibleWrapper( in apply()
434 callback, privateLayout, privateLayout.getExpandedChild(), in apply()
435 privateLayout.getVisibleWrapper( in apply()
462 callback, privateLayout, privateLayout.getHeadsUpChild(), in apply()
463 privateLayout.getVisibleWrapper( in apply()
735 privateLayout.setExpandedChild(null); in finishIfDone()
742 privateLayout.setExpandedInflatedSmartReplies( in finishIfDone()
757 privateLayout.setHeadsUpChild(null); in finishIfDone()
[all …]
H A DExpandableNotificationRow.java3621 protected void setPrivateLayout(NotificationContentView privateLayout) {
3622 mPrivateLayout = privateLayout;
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DExpandableNotificationRowTest.java436 NotificationContentView privateLayout = mock(NotificationContentView.class); in testFeedback_header() local
437 group.setPrivateLayout(privateLayout); in testFeedback_header()
448 verify(privateLayout, times(1)).setFeedbackIcon(icon); in testFeedback_header()
664 NotificationContentView privateLayout = mock(NotificationContentView.class); in testSetContentAnimationRunning_Run() local
665 row.setPrivateLayout(privateLayout); in testSetContentAnimationRunning_Run()
669 verify(privateLayout, times(1)).setContentAnimationRunning(true); in testSetContentAnimationRunning_Run()
678 NotificationContentView privateLayout = mock(NotificationContentView.class); in testSetContentAnimationRunning_Stop() local
679 row.setPrivateLayout(privateLayout); in testSetContentAnimationRunning_Stop()
683 verify(privateLayout, times(1)).setContentAnimationRunning(false); in testSetContentAnimationRunning_Stop()
H A DExpandableNotificationRowControllerTest.kt263 whenever(view.privateLayout).thenReturn(childView)
277 whenever(view.privateLayout).thenReturn(childView)