Home
last modified time | relevance | path

Searched refs:FLAG_CONTENT_VIEW_EXPANDED (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DRowContentBindParams.java20 …ndroid.systemui.statusbar.notification.row.NotificationRowContentBinder.FLAG_CONTENT_VIEW_EXPANDED;
48 mDirtyContentViews |= (FLAG_CONTENT_VIEW_CONTRACTED | FLAG_CONTENT_VIEW_EXPANDED); in setUseLowPriority()
161 FLAG_CONTENT_VIEW_CONTRACTED | FLAG_CONTENT_VIEW_EXPANDED;
DNotificationRowContentBinder.java79 FLAG_CONTENT_VIEW_EXPANDED,
92 int FLAG_CONTENT_VIEW_EXPANDED = 1 << 1; field
DNotificationContentInflater.java217 case FLAG_CONTENT_VIEW_EXPANDED: in freeNotificationView()
220 mRemoteViewCache.removeCachedView(entry, FLAG_CONTENT_VIEW_EXPANDED); in freeNotificationView()
254 if ((contentViews & FLAG_CONTENT_VIEW_EXPANDED) != 0) { in cancelContentViewFrees()
270 if ((reInflateFlags & FLAG_CONTENT_VIEW_EXPANDED) != 0 && result.newExpandedView != null) { in inflateSmartReplyViews()
294 if ((reInflateFlags & FLAG_CONTENT_VIEW_EXPANDED) != 0) { in createRemoteViews()
351 flag = FLAG_CONTENT_VIEW_EXPANDED; in apply()
356 remoteViewCache.getCachedView(entry, FLAG_CONTENT_VIEW_EXPANDED)); in apply()
584 if ((reInflateFlags & FLAG_CONTENT_VIEW_EXPANDED) != 0) { in finishIfDone()
587 remoteViewCache.putCachedView(entry, FLAG_CONTENT_VIEW_EXPANDED, in finishIfDone()
591 remoteViewCache.removeCachedView(entry, FLAG_CONTENT_VIEW_EXPANDED); in finishIfDone()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DRowContentBindStageTest.java21 …ndroid.systemui.statusbar.notification.row.NotificationRowContentBinder.FLAG_CONTENT_VIEW_EXPANDED;
73 final int flags = FLAG_CONTENT_VIEW_CONTRACTED | FLAG_CONTENT_VIEW_EXPANDED; in testRequireContentViews()
95 final int flags = FLAG_CONTENT_VIEW_CONTRACTED | FLAG_CONTENT_VIEW_EXPANDED; in testFreeContentViews()
107 final int flags = FLAG_CONTENT_VIEW_CONTRACTED | FLAG_CONTENT_VIEW_EXPANDED; in testRebindAllContentViews()
141 eq(FLAG_CONTENT_VIEW_CONTRACTED | FLAG_CONTENT_VIEW_EXPANDED), in testSetUseLowPriority()
222 int defaultFlags = FLAG_CONTENT_VIEW_CONTRACTED | FLAG_CONTENT_VIEW_EXPANDED; in testSupersedesPreviousContentViews()
DNotifRemoteViewCacheImplTest.java20 …ndroid.systemui.statusbar.notification.row.NotificationRowContentBinder.FLAG_CONTENT_VIEW_EXPANDED;
99 mNotifRemoteViewCache.putCachedView(mEntry, FLAG_CONTENT_VIEW_EXPANDED, mRemoteViews); in testClearCache()
106 assertFalse(mNotifRemoteViewCache.hasCachedView(mEntry, FLAG_CONTENT_VIEW_EXPANDED)); in testClearCache()
DNotificationContentInflaterTest.java21 …ndroid.systemui.statusbar.notification.row.NotificationRowContentBinder.FLAG_CONTENT_VIEW_EXPANDED;
203 FLAG_CONTENT_VIEW_EXPANDED, in testInflationIsRetriedIfAsyncFails()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DDynamicChildBindController.java20 …android.systemui.statusbar.notification.row.NotificationContentInflater.FLAG_CONTENT_VIEW_EXPANDED;
107 params.markContentViewsFreeable(FLAG_CONTENT_VIEW_EXPANDED); in freeContent()
114 params.requireContentViews(FLAG_CONTENT_VIEW_EXPANDED); in bindContent()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicChildBindControllerTest.java20 …ndroid.systemui.statusbar.notification.row.NotificationRowContentBinder.FLAG_CONTENT_VIEW_EXPANDED;
87 verify(bindParams).markContentViewsFreeable(FLAG_CONTENT_VIEW_EXPANDED); in testContentViewsOfChildrenBeyondCutoffAreFreed()
108 verify(bindParams).requireContentViews(FLAG_CONTENT_VIEW_EXPANDED); in testContentViewsBeforeCutoffAreBound()