Lines Matching refs:PendingIntent
20 import android.app.PendingIntent;
55 private PendingIntent mPendingIntent;
166 PendingIntent.getActivity(context, 0, new Intent(context, DeskClock.class), 0));
190 PendingIntent.
221 * @param context The context in which the PendingIntent should perform the broadcast.
226 PendingIntent quarterlyIntent = getOnQuarterHourPendingIntent(context);
244 * @param context The context in which the PendingIntent was started to perform the broadcast.
248 PendingIntent quarterlyIntent = getOnQuarterHourPendingIntent(context);
260 * @param context The Context in which this PendingIntent should perform the broadcast.
263 private PendingIntent getOnQuarterHourPendingIntent(Context context) {
265 mPendingIntent = PendingIntent.getBroadcast(context, 0,
266 new Intent(ACTION_ON_QUARTER_HOUR), PendingIntent.FLAG_CANCEL_CURRENT);