/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | BubbleEntry.java | 99 boolean wasBubble = isBubble(); in setFlagBubble() 106 return wasBubble != isBubble(); in setFlagBubble() 109 public boolean isBubble() { in isBubble() method in BubbleEntry
|
H A D | BubbleController.java | 1386 if (notif.isBubble()) { in updateBubble() 1481 } else if (shouldBubble && entry.isBubble()) { in onEntryUpdated() 1578 private void setIsBubble(@NonNull final BubbleEntry entry, final boolean isBubble, in setIsBubble() argument 1581 entry.setFlagBubble(isBubble); in setIsBubble() 1588 mBarService.onNotificationBubbleChanged(entry.getKey(), isBubble, flags); in setIsBubble() local 1594 private void setIsBubble(@NonNull final Bubble b, final boolean isBubble) { in setIsBubble() argument 1596 b.setIsBubble(isBubble); in setIsBubble() 1601 setIsBubble(entry, isBubble, b.shouldAutoExpand()); in setIsBubble() 1602 } else if (isBubble) { in setIsBubble() 1781 if (bubble.isBubble()) { [all …]
|
H A D | Bubble.java | 934 public void setIsBubble(final boolean isBubble) { in setIsBubble() argument 935 mIsBubble = isBubble; in setIsBubble() 938 public boolean isBubble() { in isBubble() method in Bubble
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationClicker.java | 102 if (!row.getEntry().isBubble() && mBubblesOptional.isPresent()) { in onClick() 119 || row.getEntry().isBubble()) { in register()
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | NotificationRecordExtractorData.java | 52 boolean allowBubble, boolean isBubble, NotificationChannel channel, String groupKey, in NotificationRecordExtractorData() argument 62 mIsBubble = isBubble; in NotificationRecordExtractorData()
|
H A D | NotificationDelegate.java | 59 void onNotificationBubbleChanged(String key, boolean isBubble, int flags); in onNotificationBubbleChanged() argument
|
H A D | NotificationManagerService.java | 1441 public void onNotificationBubbleChanged(String key, boolean isBubble, int bubbleFlags) { 1445 if (!isBubble) {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarNotificationActivityStarter.java | 228 final boolean isBubble = entry.isBubble(); in onNotificationClicked() 233 if (intent == null && !isBubble) { in onNotificationClicked() 238 boolean isActivityIntent = intent != null && intent.isActivity() && !isBubble; in onNotificationClicked()
|
H A D | HeadsUpManagerPhone.java | 531 if (entry.mEntry != null && entry.mEntry.isBubble() && !entry.isSticky()) {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotificationEntry.java | 409 public boolean isBubble() { in isBubble() method in NotificationEntry 437 boolean wasBubble = isBubble(); in setFlagBubble() 444 return wasBubble != isBubble(); in setFlagBubble()
|
/aosp14/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | NotificationListenerServiceTest.java | 229 tweak.isBubble(), in testRankingUpdate_equals() 312 isBubble(i), in generateUpdate() 450 private boolean isBubble(int index) { in isBubble() method in NotificationListenerServiceTest
|
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/ |
H A D | RankingBuilder.java | 92 mIsBubble = ranking.isBubble(); in RankingBuilder()
|
/aosp14/frameworks/base/core/java/com/android/internal/statusbar/ |
H A D | IStatusBarService.aidl | 91 void onNotificationBubbleChanged(String key, boolean isBubble, int flags); in onNotificationBubbleChanged() argument
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
H A D | BubblesManager.java | 276 && entry.isBubble()) { in BubblesManager() 419 if (shouldBubbleUp(entry) && entry.isBubble()) { in onEntryAdded()
|
/aosp14/frameworks/base/core/java/android/service/notification/ |
H A D | NotificationListenerService.java | 2081 public boolean isBubble() { in isBubble() method in NotificationListenerService.Ranking 2116 int rankingAdjustment, boolean isBubble, int proposedImportance, in populate() argument 2142 mIsBubble = isBubble; in populate()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/ |
H A D | NotificationInterruptStateProviderImpl.java | 414 if (entry.isBubble() && inShade) { in shouldHeadsUpWhenAwake()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationContentView.java | 1417 Drawable d = mContext.getDrawable(entry.isBubble() 1421 String contentDescription = mContext.getResources().getString(entry.isBubble()
|
H A D | ExpandableNotificationRow.java | 1207 .onUserChangedBubble(mEntry, !mEntry.isBubble() /* createBubble */);
|
/aosp14/frameworks/base/services/core/java/com/android/server/statusbar/ |
H A D | StatusBarManagerService.java | 1806 public void onNotificationBubbleChanged(String key, boolean isBubble, int flags) { in onNotificationBubbleChanged() argument 1810 mNotificationDelegate.onNotificationBubbleChanged(key, isBubble, flags); in onNotificationBubbleChanged()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/wmshell/ |
H A D | BubblesTest.java | 1677 assertThat(b.isBubble()).isFalse(); in testNonInterruptiveUpdate_doesntOverrideOverflowFlagBubble() 1687 assertThat(b.isBubble()).isFalse(); in testNonInterruptiveUpdate_doesntOverrideOverflowFlagBubble()
|