HomeSort by relevance Sort by last modified time
    Searched refs:mNotificationModel (Results 1 - 4 of 4) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/data/
StopwatchModel.java 42 private final NotificationModel mNotificationModel;
67 mNotificationModel = notificationModel;
110 if (!mNotificationModel.isApplicationInForeground()) {
156 if (!mNotificationModel.isApplicationInForeground()) {
227 if (stopwatch.isReset() || mNotificationModel.isApplicationInForeground()) {
228 mNotificationManager.cancel(mNotificationModel.getStopwatchNotificationId());
234 mNotificationBuilder.build(mContext, mNotificationModel, stopwatch);
235 mNotificationManager.notify(mNotificationModel.getStopwatchNotificationId(), notification);
TimerModel.java 76 private final NotificationModel mNotificationModel;
137 mNotificationModel = notificationModel;
729 if (mNotificationModel.isApplicationInForeground()) {
730 mNotificationManager.cancel(mNotificationModel.getUnexpiredTimerNotificationId());
744 mNotificationManager.cancel(mNotificationModel.getUnexpiredTimerNotificationId());
753 mNotificationBuilder.build(mContext, mNotificationModel, unexpired);
754 final int notificationId = mNotificationModel.getUnexpiredTimerNotificationId();
765 if (mNotificationModel.isApplicationInForeground()) {
766 mNotificationManager.cancel(mNotificationModel.getMissedTimerNotificationId());
773 mNotificationManager.cancel(mNotificationModel.getMissedTimerNotificationId())
    [all...]
SilentSettingsModel.java 69 private final NotificationModel mNotificationModel;
85 mNotificationModel = notificationModel;
121 if (mNotificationModel.isApplicationInForeground()) {
DataModel.java 189 private NotificationModel mNotificationModel;
212 mNotificationModel = new NotificationModel();
217 mSilentSettingsModel = new SilentSettingsModel(mContext, mNotificationModel);
218 mStopwatchModel = new StopwatchModel(mContext, prefs, mNotificationModel);
220 mNotificationModel);
293 if (mNotificationModel.isApplicationInForeground() != inForeground) {
294 mNotificationModel.setApplicationInForeground(inForeground);
309 return mNotificationModel.isApplicationInForeground();
    [all...]

Completed in 168 milliseconds