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

  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 49 import com.android.calendar.alerts.AlertReceiver;
286 intent.setClass(a, AlertReceiver.class);
288 intent.setAction(AlertReceiver.ACTION_DISMISS_OLD_REMINDERS);
290 intent.setAction(AlertReceiver.EVENT_REMINDER_APP_ACTION);
  /packages/apps/Calendar/src/com/android/calendar/alerts/
QuickResponseActivity.java 106 Intent emailIntent = AlertReceiver.createEmailIntent(QuickResponseActivity.this,
AlarmScheduler.java 316 Intent intent = new Intent(AlertReceiver.EVENT_REMINDER_APP_ACTION);
317 intent.setClass(context, AlertReceiver.class);
AlertUtils.java 105 * will generate an intent using AlertReceiver.EVENT_REMINDER_APP_ACTION.
128 Intent intent = new Intent(AlertReceiver.EVENT_REMINDER_APP_ACTION);
129 intent.setClass(context, AlertReceiver.class);
AlertService.java 205 action.equals(AlertReceiver.EVENT_REMINDER_APP_ACTION) ||
241 } else if (action.equals(AlertReceiver.ACTION_DISMISS_OLD_REMINDERS)) {
380 notification = AlertReceiver.makeBasicNotification(context, info.eventName,
386 notification = AlertReceiver.makeDigestNotification(context,
    [all...]
AlertReceiver.java 66 * -n "com.android.calendar/.alerts.AlertReceiver"
68 public class AlertReceiver extends BroadcastReceiver {
69 private static final String TAG = "AlertReceiver";
95 HandlerThread thr = new HandlerThread("AlertReceiver async");
626 * Creates a broadcast pending intent that fires to AlertReceiver when the email button
652 broadcastIntent.setClass(context, AlertReceiver.class);
    [all...]

Completed in 179 milliseconds