Home
last modified time | relevance | path

Searched refs:IMPORTANCE_HIGH (Results 1 – 25 of 44) sorted by relevance

12

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationComparatorTest.java122 mRecordHighCall.setUserImportance(NotificationManager.IMPORTANCE_HIGH); in setUp()
138 mRecordInlineReply.setUserImportance(NotificationManager.IMPORTANCE_HIGH); in setUp()
168 mRecordUrgent.setUserImportance(NotificationManager.IMPORTANCE_HIGH); in setUp()
186 mRecordEmail.setUserImportance(NotificationManager.IMPORTANCE_HIGH); in setUp()
214 mRecordHighCall.setUserImportance(NotificationManager.IMPORTANCE_HIGH); in setUp()
224 mRecordColorizedCall.setUserImportance(NotificationManager.IMPORTANCE_HIGH); in setUp()
DNotificationChannelExtractorTest.java19 import static android.app.NotificationManager.IMPORTANCE_HIGH;
67 new NotificationChannel("a", "", IMPORTANCE_HIGH); in testExtractsUpdatedChannel()
DRankingHelperTest.java19 import static android.app.NotificationManager.IMPORTANCE_HIGH;
368 new NotificationChannel("id1", "name1", NotificationManager.IMPORTANCE_HIGH); in testChannelXml()
429 new NotificationChannel("id1", "name1", NotificationManager.IMPORTANCE_HIGH); in testChannelXmlForBackup()
440 NotificationChannel channel3 = new NotificationChannel("id3", "NAM3", IMPORTANCE_HIGH); in testChannelXmlForBackup()
602 new NotificationChannel("id1", "name1", NotificationManager.IMPORTANCE_HIGH); in testChannelXml_backup()
671 + "\" importance=\"" + NotificationManager.IMPORTANCE_HIGH in testChannelXml_upgradeCreateDefaultChannel()
685 assertEquals(NotificationManager.IMPORTANCE_HIGH, updated1.getImportance()); in testChannelXml_upgradeCreateDefaultChannel()
802 new NotificationChannel("id2", "name2", NotificationManager.IMPORTANCE_HIGH); in testUpdate()
1080 new NotificationChannel("id4", "a", NotificationManager.IMPORTANCE_HIGH); in testGetDeletedChannels()
1112 new NotificationChannel("id4", "a", NotificationManager.IMPORTANCE_HIGH); in testGetDeletedChannelCount()
[all …]
DBadgeExtractorTest.java24 import static android.app.NotificationManager.IMPORTANCE_HIGH;
107 NotificationRecord r = getNotificationRecord(true, IMPORTANCE_HIGH); in testAppNoChannelYes()
149 NotificationRecord r = getNotificationRecord(true, IMPORTANCE_HIGH); in testAppYesChannelYesUserNo()
DImportanceExtractorTest.java108 new NotificationChannel("a", "a", NotificationManager.IMPORTANCE_HIGH); in testAppPreferenceChannelPreference()
114 assertEquals(r.getUserImportance(), NotificationManager.IMPORTANCE_HIGH); in testAppPreferenceChannelPreference()
DBuzzBeepBlinkTest.java21 import static android.app.NotificationManager.IMPORTANCE_HIGH;
252 new NotificationChannel("test", "test", IMPORTANCE_HIGH); in getNotificationRecord()
901 NotificationChannel channel = new NotificationChannel("test", "test", IMPORTANCE_HIGH); in testEmptyUriSoundTreatedAsNoSound()
962 new NotificationChannel("test", "test", IMPORTANCE_HIGH)); in testCrossUserSoundMuted()
DNotificationRecordTest.java303 assertEquals(NotificationManager.IMPORTANCE_HIGH, record.getImportance()); in testImportance_preUpgrade()
327 assertEquals(NotificationManager.IMPORTANCE_HIGH, record.getImportance()); in testImportance_locked_unspecified_preUpgrade()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/
DNotificationChannels.java58 NotificationManager.IMPORTANCE_HIGH); in createAll()
114 name, NotificationManager.IMPORTANCE_HIGH); // pop on screen in createScreenshotChannel()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/
DChannelsTest.java109 assertEquals(NotificationManager.IMPORTANCE_HIGH, newChannel.getImportance()); in testInheritFromLegacy_dropsUnlockedLegacySettings()
118 assertEquals(NotificationManager.IMPORTANCE_HIGH, newChannel.getImportance()); in testInheritFromLegacy_noLegacyExists()
/frameworks/support/navigation/integration-tests/testapp/src/main/java/androidx/navigation/testapp/
DAndroidFragment.java70 "deeplink", "Deep Links", NotificationManager.IMPORTANCE_HIGH)); in onViewCreated()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarTest.java19 import static android.app.NotificationManager.IMPORTANCE_HIGH;
373 when(mNotificationData.getImportance(any())).thenReturn(IMPORTANCE_HIGH); in testShouldPeek_nonSuppressedGroupSummary()
394 when(mNotificationData.getImportance(any())).thenReturn(IMPORTANCE_HIGH); in testShouldPeek_suppressedGroupSummary()
414 when(mNotificationData.getImportance(any())).thenReturn(IMPORTANCE_HIGH); in testShouldPeek_suppressedPeek()
432 when(mNotificationData.getImportance(any())).thenReturn(IMPORTANCE_HIGH); in testShouldPeek_noSuppressedPeek()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
DNotificationChannelController.java86 NotificationManager.IMPORTANCE_HIGH), in createAll()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
DLeakReporter.java85 NotificationManager.IMPORTANCE_HIGH); in dumpLeak()
/frameworks/base/core/java/com/android/internal/notification/
DSystemNotificationChannels.java111 NotificationManager.IMPORTANCE_HIGH); in createAll()
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
DNotificationTestList.java20 import static android.app.NotificationManager.IMPORTANCE_HIGH;
89 mNM.createNotificationChannel(new NotificationChannel("high", "High", IMPORTANCE_HIGH)); in onCreate()
112 new NotificationChannel("phone call", "Phone Call", IMPORTANCE_HIGH);
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecord.java20 import static android.app.NotificationManager.IMPORTANCE_HIGH;
337 requestedImportance = IMPORTANCE_HIGH; in calculateImportance()
358 requestedImportance = IMPORTANCE_HIGH; in calculateImportance()
DNotificationUsageStats.java19 import static android.app.NotificationManager.IMPORTANCE_HIGH;
1293 if (noisy && after < IMPORTANCE_HIGH) { in putNotificationDetails()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationData.java390 boolean aSystemMax = aImportance >= NotificationManager.IMPORTANCE_HIGH &&
392 boolean bSystemMax = bImportance >= NotificationManager.IMPORTANCE_HIGH &&
DNotificationEntryManager.java770 < NotificationManager.IMPORTANCE_HIGH) { in addNotificationInternal()
960 : NotificationManager.IMPORTANCE_HIGH; in shouldPeek()
/frameworks/base/core/java/android/app/
DNotificationManager.java257 IMPORTANCE_MIN, IMPORTANCE_LOW, IMPORTANCE_DEFAULT, IMPORTANCE_HIGH
304 public static final int IMPORTANCE_HIGH = 4; field in NotificationManager
/frameworks/support/compat/src/main/java/androidx/core/app/
DNotificationManagerCompat.java142 public static final int IMPORTANCE_HIGH = 4; field in NotificationManagerCompat
/frameworks/base/services/core/java/com/android/server/storage/
DDeviceStorageMonitorService.java291 NotificationManager.IMPORTANCE_HIGH)); in onStart()
/frameworks/base/core/java/android/service/notification/
DNotificationListenerService.java1619 case NotificationManager.IMPORTANCE_HIGH:
/frameworks/base/services/usb/java/com/android/server/usb/
DUsbDeviceManager.java962 NotificationManager.IMPORTANCE_HIGH)); in handleMessage()
/frameworks/support/compat/api_legacy/
D28.0.0-alpha1.txt621 field public static final int IMPORTANCE_HIGH = 4; // 0x4

12