Home
last modified time | relevance | path

Searched refs:appRow (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DNotificationBackendTest.java47 AppRow appRow = new AppRow(); in testMarkAppRow_unblockablePackage() local
49 appRow.pkg = packageName; in testMarkAppRow_unblockablePackage()
53 NotificationBackend.markAppRowWithBlockables(nonBlockablePkgs, appRow, packageName); in testMarkAppRow_unblockablePackage()
56 assertTrue(appRow.lockedImportance); in testMarkAppRow_unblockablePackage()
57 assertNull(appRow.lockedChannelId); in testMarkAppRow_unblockablePackage()
94 AppRow appRow = new AppRow(); in testMarkAppRow_unblockableChannelAndPkg() local
96 appRow.pkg = packageName; in testMarkAppRow_unblockableChannelAndPkg()
100 NotificationBackend.markAppRowWithBlockables(nonBlockablePkgs, appRow, packageName); in testMarkAppRow_unblockableChannelAndPkg()
103 assertTrue(appRow.lockedImportance); in testMarkAppRow_unblockableChannelAndPkg()
104 assertEquals("SpecificChannel", appRow.lockedChannelId); in testMarkAppRow_unblockableChannelAndPkg()
[all …]
/packages/apps/Settings/src/com/android/settings/applications/
DInstalledAppDetails.java1341 AppRow appRow = backend.loadAppRow(context, context.getPackageManager(), appEntry.info);
1342 return getNotificationSummary(appRow, context);
1345 public static CharSequence getNotificationSummary(AppRow appRow, Context context) {