Home
last modified time | relevance | path

Searched refs:InflationFlag (Results 1 – 13 of 13) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DRowContentBindParams.java23 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
33 private @InflationFlag int mContentViews = DEFAULT_INFLATION_FLAGS;
41 private @InflationFlag int mDirtyContentViews = mContentViews;
90 public void requireContentViews(@InflationFlag int contentViews) { in requireContentViews()
91 @InflationFlag int newContentViews = contentViews &= ~mContentViews; in requireContentViews()
104 public void markContentViewsFreeable(@InflationFlag int contentViews) { in markContentViewsFreeable()
109 public @InflationFlag int getContentViews() { in getContentViews()
128 public @InflationFlag int getDirtyContentViews() { in getDirtyContentViews()
140 @InflationFlag int currentContentViews = mContentViews; in setNeedsReinflation()
160 @InflationFlag private static final int DEFAULT_INFLATION_FLAGS =
H A DNotifRemoteViewCache.java24 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
38 boolean hasCachedView(NotificationEntry entry, @InflationFlag int flag); in hasCachedView()
47 @Nullable RemoteViews getCachedView(NotificationEntry entry, @InflationFlag int flag); in getCachedView()
58 @InflationFlag int flag, in putCachedView()
67 void removeCachedView(NotificationEntry entry, @InflationFlag int flag); in removeCachedView()
H A DNotifRemoteViewCacheImpl.java28 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
47 public boolean hasCachedView(NotificationEntry entry, @InflationFlag int flag) { in hasCachedView()
52 public @Nullable RemoteViews getCachedView(NotificationEntry entry, @InflationFlag int flag) { in getCachedView()
63 @InflationFlag int flag, in putCachedView()
78 public void removeCachedView(NotificationEntry entry, @InflationFlag int flag) { in removeCachedView()
H A DRowContentBindStage.java27 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
63 @InflationFlag int inflationFlags = params.getContentViews(); in executeStage()
64 @InflationFlag int invalidatedFlags = params.getDirtyContentViews(); in executeStage()
66 @InflationFlag int contentToBind = invalidatedFlags & inflationFlags; in executeStage()
67 @InflationFlag int contentToUnbind = inflationFlags ^ FLAG_CONTENT_VIEW_ALL; in executeStage()
H A DNotificationRowContentBinder.java47 @InflationFlag int contentToBind, in bindContent()
72 @InflationFlag int contentToUnbind); in unbindContent()
83 @interface InflationFlag {} annotation
H A DNotificationContentInflater.java99 @InflationFlag int contentToBind, in bindContent()
150 @InflationFlag int reInflateFlags, in inflateNotificationViews()
190 @InflationFlag int contentToUnbind) { in unbindContent()
209 @InflationFlag int inflateFlag) { in freeNotificationView()
250 @InflationFlag int contentViews) { in cancelContentViewFrees()
267 @InflationFlag int reInflateFlags, in inflateSmartReplyViews()
327 @InflationFlag int reInflateFlags, in apply()
450 final @InflationFlag int reInflateFlags, in applyRemoteView()
451 @InflationFlag int inflationId, in applyRemoteView()
735 @InflationFlag int reInflateFlags, in AsyncInflationTask()
[all …]
H A DNotifBindPipeline.java37 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
H A DExpandableNotificationRow.java99 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
503 public void freeContentViewWhenSafe(@InflationFlag int inflationFlag) { in freeContentViewWhenSafe()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
H A DNotificationTestHelper.java67 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
210 public ExpandableNotificationRow createRow(@InflationFlag int extraInflationFlags) in createRow()
427 @InflationFlag int extraInflationFlags) in generateRow()
438 @InflationFlag int extraInflationFlags, in generateRow()
H A DNotificationContentInflaterTest.java60 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
336 @InflationFlag int contentToInflate, in inflateAndWait()
344 @InflationFlag int contentToInflate, in inflateAndWait()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAlertingNotificationManager.java31 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
176 public abstract @InflationFlag int getContentFlag(); in getContentFlag()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DHeadsUpManager.java40 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
170 public @InflationFlag int getContentFlag() { in getContentFlag()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationGroupAlertTransferHelper.java36 import com.android.systemui.statusbar.notification.row.NotificationRowContentBinder.InflationFlag;
581 @InflationFlag int contentFlag = mHeadsUpManager.getContentFlag(); in alertNotificationWhenPossible()