/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/provider/ |
D | RandomNumberProviderService.java | 63 PendingIntent pendingIntent = PendingIntent.getService( in onComplicationUpdate() local 83 .setTapAction(pendingIntent) in onComplicationUpdate() 89 .setTapAction(pendingIntent) in onComplicationUpdate() 96 .setTapAction(pendingIntent) in onComplicationUpdate()
|
/development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/ |
D | AlarmUtil.java | 52 PendingIntent pendingIntent = PendingIntent in scheduleAlarm() local 62 pendingIntent); in scheduleAlarm() 63 mAlarmManager.setAlarmClock(alarmClockInfo, pendingIntent); in scheduleAlarm() 77 PendingIntent pendingIntent = PendingIntent in cancelAlarm() local 79 mAlarmManager.cancel(pendingIntent); in cancelAlarm()
|
/development/samples/browseable/RepeatingAlarm/src/com.example.android.repeatingalarm/ |
D | RepeatingAlarmFragment.java | 61 PendingIntent pendingIntent = PendingIntent.getActivity(getActivity(), REQUEST_CODE, in onOptionsItemSelected() local 90 FIFTEEN_SEC_MILLIS, pendingIntent); in onOptionsItemSelected()
|
/development/samples/browseable/BasicNotifications/src/com.example.android.basicnotifications/ |
D | MainActivity.java | 42 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0); in sendNotification() local 62 builder.setContentIntent(pendingIntent); in sendNotification()
|
/development/samples/KeyChainDemo/src/com/example/android/keychain/ |
D | SecureWebServerService.java | 76 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, in createNotification() local 84 setContentIntent(pendingIntent). in createNotification()
|
/development/samples/InlineFillService/src/com/example/android/inlinefillservice/ |
D | InlineRequestHelper.java | 80 PendingIntent pendingIntent = in createInlineActionDataset() local 87 .setAuthentication(pendingIntent.getIntentSender()); in createInlineActionDataset() 129 PendingIntent pendingIntent = PendingIntent.getActivity(context, msg.hashCode(), intent, in createAttribution() local 131 return pendingIntent; in createAttribution()
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | NotificationPresets.java | 70 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, in buildNotification() local 94 context.getString(R.string.action_a), pendingIntent)) in buildNotification() 96 context.getString(R.string.reply), pendingIntent) in buildNotification() 192 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, in buildNotification() local 218 context.getString(R.string.action_a), pendingIntent)) in buildNotification() 220 context.getString(R.string.action_b), pendingIntent)) in buildNotification() 222 context.getString(R.string.action_c), pendingIntent)) in buildNotification() 224 context.getString(R.string.action_d), pendingIntent)) in buildNotification()
|
/development/apps/BuildWidget/src/com/android/buildwidget/ |
D | BuildWidget.java | 66 PendingIntent pendingIntent = PendingIntent.getActivity(context, in buildUpdate() local 70 updateViews.setOnClickPendingIntent(R.id.widget, pendingIntent); in buildUpdate()
|
/development/samples/browseable/Timer/src/com.example.android.wearable.timer/ |
D | TimerNotificationService.java | 78 PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, in deleteTimer() local 80 alarm.cancel(pendingIntent); in deleteTimer()
|
D | SetTimerActivity.java | 115 PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, in registerWithAlarmManager() local 122 alarm.setExact(AlarmManager.RTC_WAKEUP, wakeupTime, pendingIntent); in registerWithAlarmManager()
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
D | InstallApkSessionApi.java | 74 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0); in onCreate() 75 IntentSender statusReceiver = pendingIntent.getIntentSender(); in onCreate()
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
D | WordWidget.java | 117 PendingIntent pendingIntent = PendingIntent.getActivity(context, in buildUpdate() local 119 views.setOnClickPendingIntent(R.id.widget, pendingIntent); in buildUpdate()
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
D | WordWidget.java | 108 PendingIntent pendingIntent = PendingIntent.getActivity(context, in buildUpdate() local 110 updateViews.setOnClickPendingIntent(R.id.widget, pendingIntent); in buildUpdate()
|
/development/samples/browseable/XYZTouristAttractions/Wearable/src/com.example.android.xyztouristattractions/service/ |
D | ListenerService.java | 96 PendingIntent pendingIntent = in showNotification() local 116 pendingIntent).build()) in showNotification()
|
/development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/ |
D | ResponderService.java | 102 PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, in showNotification() local 107 R.drawable.ic_full_reply, getString(R.string.reply), pendingIntent) in showNotification()
|
/development/samples/browseable/SynchronizedNotifications/Application/src/com.example.android.wearable.synchronizednotifications/ |
D | SynchronizedNotificationsFragment.java | 108 PendingIntent pendingIntent = in buildLocalOnlyNotification() local 114 builder.setDeleteIntent(pendingIntent); in buildLocalOnlyNotification()
|
/development/samples/browseable/SynchronizedNotifications/Wearable/src/com.example.android.wearable.synchronizednotifications/ |
D | NotificationUpdateService.java | 128 PendingIntent pendingIntent = PendingIntent in buildWearableOnlyNotification() local 130 builder.setDeleteIntent(pendingIntent); in buildWearableOnlyNotification()
|
/development/samples/ApiDemos/src/com/example/android/apis/os/ |
D | MmsMessagingDemo.java | 174 final PendingIntent pendingIntent = PendingIntent.getBroadcast( in sendMessage() 196 pendingIntent); in sendMessage() 200 pendingIntent.send(SmsManager.MMS_ERROR_IO_ERROR); in sendMessage() 227 final PendingIntent pendingIntent = PendingIntent.getBroadcast( in downloadMessage() 230 locationUrl, contentUri, null/*configOverrides*/, pendingIntent); in downloadMessage()
|
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/service/ |
D | UtilityService.java | 168 PendingIntent pendingIntent = PendingIntent.getBroadcast( in addGeofencesInternal() local 171 TouristAttractions.getGeofenceList(), pendingIntent); in addGeofencesInternal() 349 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, in showNotification() local 369 .setContentIntent(pendingIntent) in showNotification()
|