Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotifRemoteViewCacheImpl.java53 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in getCachedView() local
54 if (contentViews == null) { in getCachedView()
57 return contentViews.get(flag); in getCachedView()
70 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in putCachedView() local
71 if (contentViews == null) { in putCachedView()
74 contentViews.put(flag, remoteView); in putCachedView()
79 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in removeCachedView() local
80 if (contentViews == null) { in removeCachedView()
83 contentViews.remove(flag); in removeCachedView()
88 SparseArray<RemoteViews> contentViews = mNotifCachedContentViews.get(entry); in clearCache() local
[all …]
DRowContentBindParams.java93 public void requireContentViews(@InflationFlag int contentViews) { in requireContentViews() argument
94 @InflationFlag int newContentViews = contentViews &= ~mContentViews; in requireContentViews()
95 mContentViews |= contentViews; in requireContentViews()
107 public void markContentViewsFreeable(@InflationFlag int contentViews) { in markContentViewsFreeable() argument
108 @InflationFlag int existingFreeableContentViews = contentViews &= mContentViews; in markContentViewsFreeable()
109 mContentViews &= ~contentViews; in markContentViewsFreeable()
DNotificationContentInflater.java323 @InflationFlag int contentViews) { in cancelContentViewFrees() argument
324 if ((contentViews & FLAG_CONTENT_VIEW_CONTRACTED) != 0) { in cancelContentViewFrees()
327 if ((contentViews & FLAG_CONTENT_VIEW_EXPANDED) != 0) { in cancelContentViewFrees()
330 if ((contentViews & FLAG_CONTENT_VIEW_HEADS_UP) != 0) { in cancelContentViewFrees()
333 if ((contentViews & FLAG_CONTENT_VIEW_PUBLIC) != 0) { in cancelContentViewFrees()
337 && (contentViews & FLAG_CONTENT_VIEW_SINGLE_LINE) != 0) { in cancelContentViewFrees()
DNotificationRowContentBinderImpl.kt308 @InflationFlag contentViews: Int in <lambda>()
310 if (contentViews and FLAG_CONTENT_VIEW_CONTRACTED != 0) { in <lambda>()
315 if (contentViews and FLAG_CONTENT_VIEW_EXPANDED != 0) { in <lambda>()
320 if (contentViews and FLAG_CONTENT_VIEW_HEADS_UP != 0) { in <lambda>()
325 if (contentViews and FLAG_CONTENT_VIEW_PUBLIC != 0) { in <lambda>()
332 contentViews and FLAG_CONTENT_VIEW_SINGLE_LINE != 0 in <lambda>()