/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | BubbleExtractorTest.java | 176 assertFalse(r.canBubble()); in testAppYesChannelNo() 191 assertTrue(r.canBubble()); in testAppYesChannelDefault() 205 assertTrue(r.canBubble()); in testAppYesChannelYes() 219 assertFalse(r.canBubble()); in testAppYesChannelYesFeatureNo() 234 assertFalse(r.canBubble()); in testAppNoChannelYes() 249 assertFalse(r.canBubble()); in testAppNoChannelDefault() 264 assertFalse(r.canBubble()); in testAppSelectedChannelDefault() 279 assertFalse(r.canBubble()); in testAppSelectedChannelNo() 295 assertTrue(r.canBubble()); in testAppSeletedChannelYes() 310 assertFalse(r.canBubble()); in testAppSeletedChannelYesFeatureNo() [all …]
|
D | NotificationListenerServiceTest.java | 120 assertEquals(canBubble(i), ranking.canBubble()); in testRanking() 190 tweak.canBubble(), in testRankingUpdate_equals() 270 canBubble(i), in generateUpdate() 375 private boolean canBubble(int index) { in canBubble() method in NotificationListenerServiceTest 434 assertEquals(comment, a.canBubble(), b.canBubble()); in detailedAssertEquals()
|
D | PreferencesHelperTest.java | 983 assertEquals(channel.canBubble(), savedChannel.canBubble()); in testCreateChannel_CannotChangeHiddenFields() 1014 assertEquals(channel.canBubble(), savedChannel.canBubble()); in testCreateChannel_CannotChangeHiddenFieldsAssistant() 1571 newChannel.setAllowBubbles(!channel.canBubble()); in testCreateChannel_alreadyExists() 2700 mHelper.getNotificationChannel(PKG_O, UID_O, a.getId(), false).canBubble()); in testUpdateNotificationChannel_oemLockedImportance() 2847 mHelper.getNotificationChannel(PKG_O, UID_O, a.getId(), false).canBubble()); in testUpdateNotificationChannel_defaultAppLockedImportance()
|
D | NotificationManagerServiceTest.java | 683 r.setAllowBubble(!r.canBubble()); in getSignalExtractorSideEffects() 6493 original.setAllowBubbles(!original.canBubble()); in createConversationNotificationChannel() 6517 assertFalse(friendChannel.canBubble()); // can't be modified by app in createConversationNotificationChannel()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | RankingBuilder.java | 82 mCanBubble = ranking.canBubble(); in RankingBuilder() 184 public RankingBuilder setCanBubble(boolean canBubble) { in setCanBubble() argument 185 mCanBubble = canBubble; in setCanBubble()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | BubbleExtractor.java | 98 record.setAllowBubble(recordChannel.canBubble()); in process() 103 + " canBubble: " + record.canBubble() in process() 108 final boolean applyFlag = record.canBubble() && !record.isFlagBubbleRemoved(); in process()
|
D | NotificationRecord.java | 1037 public boolean canBubble() { in canBubble() method in NotificationRecord
|
D | NotificationManagerService.java | 6673 if (r.canBubble()) { 6914 } else if (record.canBubble()) { 7306 record.canBubble() && (interruptiveBefore != record.isInterruptive()); 7346 allowBubbles[i] = r.canBubble(); 7365 || allowBubbles[i] != r.canBubble() 8535 record.canBubble(),
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationEntryBuilder.java | 251 public NotificationEntryBuilder setCanBubble(boolean canBubble) { in setCanBubble() argument 252 mRankingBuilder.setCanBubble(canBubble); in setCanBubble()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarter.java | 361 final boolean canBubble = entry.canBubble(); in handleNotificationClickAfterPanelCollapsed() 362 if (canBubble) { in handleNotificationClickAfterPanelCollapsed() 369 if (isActivityIntent || canBubble) { in handleNotificationClickAfterPanelCollapsed() 384 if (!canBubble) { in handleNotificationClickAfterPanelCollapsed()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationConversationInfoTest.java | 632 assertFalse(mConversationChannel.canBubble()); in testFavorite() 675 assertFalse(mConversationChannel.canBubble()); in testDefault() 756 assertTrue(captor.getValue().canBubble()); in testFavorite_andSave() 866 assertFalse(captor.getValue().canBubble()); in testDefault_andSave() 902 assertTrue(captor.getValue().canBubble()); in testDefault_andSave_doesNotChangeNonImportantBubbling() 974 assertFalse(captor.getValue().canBubble()); in testSilence_andSave()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotificationEntry.java | 345 public boolean canBubble() { in canBubble() method in NotificationEntry 346 return mRanking.canBubble(); in canBubble() 412 } else if (mBubbleMetadata != null && canBubble()) { in setFlagBubble()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/ |
D | NotificationInterruptStateProviderImpl.java | 142 if (!entry.canBubble()) { in shouldBubbleUp()
|
/frameworks/base/core/java/android/service/notification/ |
D | NotificationListenerService.java | 1826 public boolean canBubble() { in canBubble() method in NotificationListenerService.Ranking 1874 ArrayList<CharSequence> smartReplies, boolean canBubble, in populate() argument 1896 mCanBubble = canBubble; in populate()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/ |
D | BubbleController.java | 1038 } else if (entry.canBubble()) { in expandStackAndSelectBubble() 1242 if (isActiveBubble && !mTmpRanking.canBubble()) { in onRankingUpdated()
|
/frameworks/base/core/java/android/app/ |
D | NotificationChannel.java | 722 public boolean canBubble() { in canBubble() method in NotificationChannel
|
/frameworks/base/services/people/java/com/android/server/people/data/ |
D | DataManager.java | 870 builder.setBubbled(channel.canBubble()); in onNotificationChannelModified()
|
/frameworks/base/config/ |
D | boot-profile.txt | 671 Landroid/app/NotificationChannel;->canBubble()Z
|
D | boot-image-profile.txt | 2734 HSPLandroid/app/NotificationChannel;->canBubble()Z 17705 HSPLandroid/service/notification/NotificationListenerService$Ranking;->canBubble()Z
|
/frameworks/base/api/ |
D | current.txt | 5933 method public boolean canBubble(); 43864 method public boolean canBubble();
|
/frameworks/base/services/ |
D | art-profile | 21867 HSPLcom/android/server/notification/NotificationRecord;->canBubble()Z
|