Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java371 NotificationContentView privateLayout = row.getPrivateLayout(); in apply() local
392 row, isNewView, remoteViewClickHandler, callback, privateLayout, in apply()
393 privateLayout.getContractedChild(), privateLayout.getVisibleWrapper( in apply()
417 callback, privateLayout, privateLayout.getExpandedChild(), in apply()
418 privateLayout.getVisibleWrapper( in apply()
443 callback, privateLayout, privateLayout.getHeadsUpChild(), in apply()
444 privateLayout.getVisibleWrapper( in apply()
611 NotificationContentView privateLayout = row.getPrivateLayout(); in finishIfDone() local
617 privateLayout.setContractedChild(result.inflatedContentView); in finishIfDone()
628 privateLayout.setExpandedChild(result.inflatedExpandedView); in finishIfDone()
[all …]
DExpandableNotificationRow.java3199 protected void setPrivateLayout(NotificationContentView privateLayout) {
3200 mPrivateLayout = privateLayout;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowTest.java248 NotificationContentView privateLayout = mock(NotificationContentView.class); in testShowAppOpsIcons_header() local
249 mGroupRow.setPrivateLayout(privateLayout); in testShowAppOpsIcons_header()
260 verify(privateLayout, times(1)).showAppOpsIcons(ops); in testShowAppOpsIcons_header()