Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java411 NotificationContentView publicLayout = row.getPublicLayout(); in apply() local
507 publicLayout, publicLayout.getContractedChild(), in apply()
508 publicLayout.getVisibleWrapper(NotificationContentView.VISIBLE_TYPE_CONTRACTED), in apply()
514 NotificationContentView newParent = redactAmbient ? publicLayout : privateLayout; in apply()
678 NotificationContentView publicLayout = row.getPublicLayout(); in finishIfDone() local
731 publicLayout.setContractedChild(result.inflatedPublicView); in finishIfDone()
741 ? publicLayout : privateLayout; in finishIfDone()
743 ? publicLayout : privateLayout; in finishIfDone()
DExpandableNotificationRow.java3231 protected void setPublicLayout(NotificationContentView publicLayout) {
3232 mPublicLayout = publicLayout;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowTest.java252 NotificationContentView publicLayout = mock(NotificationContentView.class); in testShowAppOpsIcons_header() local
253 mGroupRow.setPublicLayout(publicLayout); in testShowAppOpsIcons_header()
267 verify(publicLayout, times(1)).showAppOpsIcons(ops); in testShowAppOpsIcons_header()