Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/
DNotificationMemoryViewWalker.kt75 row.publicLayout?.expandedChild, in <lambda>()
76 row.publicLayout?.contractedChild, in <lambda>()
77 row.publicLayout?.headsUpChild in <lambda>()
107 row.publicLayout?.expandedChild, in <lambda>()
108 row.publicLayout?.contractedChild, in <lambda>()
109 row.publicLayout?.headsUpChild, in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowTest.java466 NotificationContentView publicLayout = mock(NotificationContentView.class); in testFeedback_header() local
467 group.setPublicLayout(publicLayout); in testFeedback_header()
481 verify(publicLayout, times(1)).setFeedbackIcon(icon); in testFeedback_header()
667 NotificationContentView publicLayout = mock(NotificationContentView.class); in testSetContentAnimationRunning_Run() local
668 row.setPublicLayout(publicLayout); in testSetContentAnimationRunning_Run()
673 verify(publicLayout, times(1)).setContentAnimationRunning(true); in testSetContentAnimationRunning_Run()
681 NotificationContentView publicLayout = mock(NotificationContentView.class); in testSetContentAnimationRunning_Stop() local
682 row.setPublicLayout(publicLayout); in testSetContentAnimationRunning_Stop()
687 verify(publicLayout, times(1)).setContentAnimationRunning(false); in testSetContentAnimationRunning_Stop()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationRowContentBinderImpl.kt280 row.publicLayout.performWhenContentInactive( in <lambda>()
283 row.publicLayout.setContractedChild(null) in <lambda>()
326 row.publicLayout.removeContentInactiveRunnable( in <lambda>()
815 val publicLayout = row.publicLayout in <lambda>() constant
980 parentLayout = publicLayout, in <lambda>()
981 existingView = publicLayout.contractedChild, in <lambda>()
983 publicLayout.getVisibleWrapper( in <lambda>()
1363 val publicLayout = row.publicLayout in <lambda>() constant
1453 publicLayout.setContractedChild(result.inflatedPublicView) in <lambda>()
DNotificationContentInflater.java474 NotificationContentView publicLayout = row.getPublicLayout(); in apply() local
580 publicLayout, publicLayout.getContractedChild(), in apply()
581 publicLayout.getVisibleWrapper(NotificationContentView.VISIBLE_TYPE_CONTRACTED), in apply()
875 NotificationContentView publicLayout = row.getPublicLayout();
960 publicLayout.setContractedChild(result.inflatedPublicView);
DExpandableNotificationRow.java3734 protected void setPublicLayout(NotificationContentView publicLayout) {
3735 mPublicLayout = publicLayout;