Searched defs:notificationManager (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/compat/api24/android/support/v4/app/
H A DNotificationManagerCompatApi24.java21 public static boolean areNotificationsEnabled(NotificationManager notificationManager) { argument
22 return notificationManager.areNotificationsEnabled();
25 public static int getImportance(NotificationManager notificationManager) { argument
26 return notificationManager.getImportance();
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationManagerCompat.java156 void cancelNotification(NotificationManager notificationManager, String tag, int id); argument
158 void postNotification(NotificationManager notificationManager, String tag, int id, argument
163 boolean areNotificationsEnabled(Context context, NotificationManager notificationManager); argument
165 int getImportance(NotificationManager notificationManager); argument
171 public void cancelNotification(NotificationManager notificationManager, String tag, argument
173 notificationManager.cancel(tag, id);
177 public void postNotification(NotificationManager notificationManager, String tag, int id, argument
179 notificationManager.notify(tag, id, notification);
189 NotificationManager notificationManager) {
194 public int getImportance(NotificationManager notificationManager) { argument
188 areNotificationsEnabled(Context context, NotificationManager notificationManager) argument
208 areNotificationsEnabled(Context context, NotificationManager notificationManager) argument
216 areNotificationsEnabled(Context context, NotificationManager notificationManager) argument
222 getImportance(NotificationManager notificationManager) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DDpmMockContext.java255 public final NotificationManager notificationManager; field in class:DpmMockContext
290 notificationManager = mock(NotificationManager.class);

Completed in 308 milliseconds