OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
102
* will generate an intent using
AlertReceiver
.EVENT_REMINDER_APP_ACTION.
125
Intent intent = new Intent(
AlertReceiver
.EVENT_REMINDER_APP_ACTION);
126
intent.setClass(context,
AlertReceiver
.class);
AlertService.java
205
action.equals(
AlertReceiver
.EVENT_REMINDER_APP_ACTION) ||
234
} else if (action.equals(
AlertReceiver
.ACTION_DISMISS_OLD_REMINDERS)) {
371
notification =
AlertReceiver
.makeBasicNotification(context, info.eventName,
377
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
";
96
HandlerThread thr = new HandlerThread("
AlertReceiver
async");
637
* Creates a broadcast pending intent that fires to
AlertReceiver
when the email button
663
broadcastIntent.setClass(context,
AlertReceiver
.class);
[
all
...]
Completed in 603 milliseconds