Home
last modified time | relevance | path

Searched refs:addToQueue (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
DCarHeadsUpNotificationQueueTest.java147 mCarHeadsUpNotificationQueue.addToQueue(alertEntry1, mRankingMap); in addToQueue_prioritises_postTimeOfHeadsUp()
148 mCarHeadsUpNotificationQueue.addToQueue(alertEntry2, mRankingMap); in addToQueue_prioritises_postTimeOfHeadsUp()
149 mCarHeadsUpNotificationQueue.addToQueue(alertEntry3, mRankingMap); in addToQueue_prioritises_postTimeOfHeadsUp()
150 mCarHeadsUpNotificationQueue.addToQueue(alertEntry4, mRankingMap); in addToQueue_prioritises_postTimeOfHeadsUp()
151 mCarHeadsUpNotificationQueue.addToQueue(alertEntry5, mRankingMap); in addToQueue_prioritises_postTimeOfHeadsUp()
181 mCarHeadsUpNotificationQueue.addToQueue(alertEntry1, mRankingMap); in addToQueue_prioritises_categoriesOfHeadsUp()
182 mCarHeadsUpNotificationQueue.addToQueue(alertEntry2, mRankingMap); in addToQueue_prioritises_categoriesOfHeadsUp()
183 mCarHeadsUpNotificationQueue.addToQueue(alertEntry3, mRankingMap); in addToQueue_prioritises_categoriesOfHeadsUp()
184 mCarHeadsUpNotificationQueue.addToQueue(alertEntry4, mRankingMap); in addToQueue_prioritises_categoriesOfHeadsUp()
185 mCarHeadsUpNotificationQueue.addToQueue(alertEntry5, mRankingMap); in addToQueue_prioritises_categoriesOfHeadsUp()
[all …]
DCarHeadsUpNotificationManagerTest.java246 verify(mCarHeadsUpNotificationQueue, never()).addToQueue(any(), any()); in maybeShowHeadsUp_isNotImportant_returnsFalseAndNotAddedToQueue()
258 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryNavigationHeadsUp, in maybeShowHeadsUp_isImportanceHigh_returnsTrueAndAddedToQueue()
271 verify(mCarHeadsUpNotificationQueue, never()).addToQueue(any(), any()); in maybeShowHeadsUp_categoryCarInformation_returnsFalseAndNotAddedToQueue()
283 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryMessageHeadsUp, mRankingMapMock); in maybeShowHeadsUp_categoryMessage_returnsTrueAndAddedToQueue()
295 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryCallHeadsUp, mRankingMapMock); in maybeShowHeadsUp_categoryCall_returnsTrueAndAddedToQueue()
307 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryNavigationHeadsUp, in maybeShowHeadsUp_categoryNavigation_returnsTrueAndAddedToQueue()
320 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryInboxHeadsUp, mRankingMapMock); in maybeShowHeadsUp_inboxHeadsUp_returnsTrueAndAddedToQueue()
332 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryCarInformationHeadsUp, in maybeShowHeadsUp_isSignedWithPlatformKey_returnsTrueAndAddedToQueue()
345 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryCarInformationHeadsUp, in maybeShowHeadsUp_isSystemApp_returnsTrueAndAddedToQueue()
359 verify(mCarHeadsUpNotificationQueue).addToQueue(mAlertEntryInboxHeadsUp, mRankingMapMock); in maybeShowHeadsUp_nonMutedNotification_returnsTrueAndAddedToQueue()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/model/
DItemInstallQueue.java114 private void addToQueue(PendingInstallShortcutInfo info) { in addToQueue() method in ItemInstallQueue
211 addToQueue(info); in queuePendingShortcutInfo()
/packages/apps/Car/Notification/src/com/android/car/notification/
DCarHeadsUpNotificationQueue.java163 public void addToQueue(AlertEntry alertEntry, in addToQueue() method in CarHeadsUpNotificationQueue
DCarHeadsUpNotificationManager.java273 mCarHeadsUpNotificationQueue.addToQueue(alertEntry, rankingMap); in maybeShowHeadsUp()