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.java410 NotificationContentView privateLayout = row.getPrivateLayout(); in apply() local
431 row, redactAmbient, isNewView, remoteViewClickHandler, callback, privateLayout, in apply()
432 privateLayout.getContractedChild(), privateLayout.getVisibleWrapper( in apply()
456 callback, privateLayout, privateLayout.getExpandedChild(), in apply()
457 privateLayout.getVisibleWrapper( in apply()
482 callback, privateLayout, privateLayout.getHeadsUpChild(), in apply()
483 privateLayout.getVisibleWrapper( in apply()
514 NotificationContentView newParent = redactAmbient ? publicLayout : privateLayout; in apply()
677 NotificationContentView privateLayout = row.getPrivateLayout(); in finishIfDone() local
683 privateLayout.setContractedChild(result.inflatedContentView); in finishIfDone()
[all …]
DExpandableNotificationRow.java3226 protected void setPrivateLayout(NotificationContentView privateLayout) {
3227 mPrivateLayout = privateLayout;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowTest.java254 NotificationContentView privateLayout = mock(NotificationContentView.class); in testShowAppOpsIcons_header() local
255 mGroupRow.setPrivateLayout(privateLayout); in testShowAppOpsIcons_header()
266 verify(privateLayout, times(1)).showAppOpsIcons(ops); in testShowAppOpsIcons_header()