Home
last modified time | relevance | path

Searched refs:FLAG_CONTENT_VIEW_PUBLIC (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java68 FLAG_CONTENT_VIEW_PUBLIC,
92 public static final int FLAG_CONTENT_VIEW_PUBLIC = 1 << 3; field in NotificationContentInflater
166 int flags = FLAG_CONTENT_VIEW_PUBLIC; in updateNeedsRedaction()
299 case FLAG_CONTENT_VIEW_PUBLIC: in freeNotificationView()
302 mCachedContentViews.remove(FLAG_CONTENT_VIEW_PUBLIC); in freeNotificationView()
352 if ((reInflateFlags & FLAG_CONTENT_VIEW_PUBLIC) != 0) { in createRemoteViews()
450 flag = FLAG_CONTENT_VIEW_PUBLIC; in apply()
454 cachedContentViews.get(FLAG_CONTENT_VIEW_PUBLIC)); in apply()
663 if ((reInflateFlags & FLAG_CONTENT_VIEW_PUBLIC) != 0) { in finishIfDone()
666 cachedContentViews.put(FLAG_CONTENT_VIEW_PUBLIC, result.newPublicView); in finishIfDone()
[all …]
DExpandableNotificationRow.java21 …m.android.systemui.statusbar.notification.row.NotificationContentInflater.FLAG_CONTENT_VIEW_PUBLIC;
474 case FLAG_CONTENT_VIEW_PUBLIC: in freeContentViewWhenSafe()
1620 updateInflationFlag(FLAG_CONTENT_VIEW_PUBLIC, needsRedaction /* shouldInflate */);
1623 freeContentViewWhenSafe(FLAG_CONTENT_VIEW_PUBLIC);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflaterTest.java22 …m.android.systemui.statusbar.notification.row.NotificationContentInflater.FLAG_CONTENT_VIEW_PUBLIC;
210 mNotificationInflater.updateInflationFlag(FLAG_CONTENT_VIEW_PUBLIC, true); in testUpdateNeedsRedactionReinflatesChangedContentViews()
215 assertEquals(FLAG_CONTENT_VIEW_PUBLIC, asyncInflationTask.getReInflateFlags()); in testUpdateNeedsRedactionReinflatesChangedContentViews()
DExpandableNotificationRowTest.java23 …m.android.systemui.statusbar.notification.row.NotificationContentInflater.FLAG_CONTENT_VIEW_PUBLIC;
154 assertTrue(row.getNotificationInflater().isInflationFlagSet(FLAG_CONTENT_VIEW_PUBLIC)); in setNeedsRedactionSetsInflationFlag()