Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/notification/
DBubbleExtractor.java102 record.setAllowBubble(recordChannel.getAllowBubbles() != ALLOW_BUBBLE_OFF); in process()
DPreferencesHelper.java1067 ? existing.getAllowBubbles() in createNotificationChannel()
1287 && oldParent.getAllowBubbles() != updatedParent.getAllowBubbles()) { in maybeUpdateChildConversationChannel()
1288 conversation.setAllowBubbles(updatedParent.getAllowBubbles()); in maybeUpdateChildConversationChannel()
2041 if (original.getAllowBubbles() != update.getAllowBubbles()) { in lockFieldsForUpdateLocked()
/frameworks/base/core/java/android/app/
DNotificationChannel.java952 public int getAllowBubbles() { in getAllowBubbles() method in NotificationChannel
1357 if (getAllowBubbles() != DEFAULT_ALLOW_BUBBLE) { in writeXml()
1358 out.attributeInt(null, ATT_ALLOW_BUBBLE, getAllowBubbles()); in writeXml()
1424 record.put(ATT_ALLOW_BUBBLE, getAllowBubbles()); in toJson()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DPreferencesHelperTest.java5422 assertThat(originalChild.getAllowBubbles()).isEqualTo(DEFAULT_ALLOW_BUBBLE); in testUpdateConversationParent_updatesUnlockedFields()
5445 assertThat(updatedChild.getAllowBubbles()).isEqualTo(ALLOW_BUBBLE_ON); in testUpdateConversationParent_updatesUnlockedFields()
5489 assertThat(updatedChild.getAllowBubbles()).isEqualTo(DEFAULT_ALLOW_BUBBLE); in testUpdateConversationParent_doesNotUpdateLockedFields()