HomeSort by relevance Sort by last modified time
    Searched defs:updateIntent (Results 1 - 15 of 15) sorted by null

  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/provider/
RandomNumberProviderService.java 57 Intent updateIntent =
59 updateIntent.setAction(UpdateComplicationDataService.ACTION_UPDATE_COMPLICATION);
61 updateIntent.putExtra(UpdateComplicationDataService.EXTRA_COMPLICATION_ID, complicationId);
71 updateIntent,
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/provider/
RandomNumberProviderService.java 57 Intent updateIntent =
59 updateIntent.setAction(UpdateComplicationDataService.ACTION_UPDATE_COMPLICATION);
61 updateIntent.putExtra(UpdateComplicationDataService.EXTRA_COMPLICATION_ID, complicationId);
71 updateIntent,
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/provider/
RandomNumberProviderService.java 57 Intent updateIntent =
59 updateIntent.setAction(UpdateComplicationDataService.ACTION_UPDATE_COMPLICATION);
61 updateIntent.putExtra(UpdateComplicationDataService.EXTRA_COMPLICATION_ID, complicationId);
71 updateIntent,
  /packages/apps/Music/src/com/android/music/
MediaAppWidgetProvider.java 54 Intent updateIntent = new Intent(MediaPlaybackService.SERVICECMD);
55 updateIntent.putExtra(MediaPlaybackService.CMDNAME,
57 updateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds);
58 updateIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
59 context.sendBroadcast(updateIntent);
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
UpdateService.java 61 Intent updateIntent = new Intent(context, UpdateService.class);
62 updateIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
63 updateIntent.setAction(ACTION_UPDATE);
64 updateIntent.putExtra("id", id);
65 updateIntent.putExtra("when", when);
66 updateIntent.putExtra("update", update);
68 context, 58, updateIntent, PendingIntent.FLAG_UPDATE_CURRENT);
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelPicker.java 108 Intent updateIntent = new Intent(this, Service.class);
111 updateIntent.putExtra("defPackage", c.getString(2));
112 updateIntent.putExtra("defName", c.getString(3));
113 startService(updateIntent);
Compatibility.java 75 Intent updateIntent = new Intent(this, Service.class);
76 updateIntent.putExtra("defPackage", getPackageName());
77 updateIntent.putExtra("defName", ActivityMusic.class.getName());
78 startService(updateIntent);
102 Intent updateIntent = new Intent(context, Service.class);
103 updateIntent.putExtra("reason", intent);
104 context.startService(updateIntent);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SystemBroadcastReceiver.java 140 final Intent updateIntent = new Intent(
142 context.sendBroadcast(updateIntent);
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetProvider.java 125 Intent updateIntent = new Intent(context, CalendarAppWidgetService.class);
126 updateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
128 updateIntent.putExtra(EXTRA_EVENT_IDS, changedEventIds);
130 updateIntent.setData(Uri.parse(updateIntent.toUri(Intent.URI_INTENT_SCHEME)));
145 views.setRemoteAdapter(appWidgetId, R.id.events_list, updateIntent);
  /developers/build/prebuilts/gradle/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
QuizListenerService.java 140 PendingIntent updateIntent = PendingIntent.getService(this, 0, updateOperation,
143 questionNumToDrawableId.get(i), null, updateIntent)
  /developers/samples/android/wearable/wear/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
QuizListenerService.java 140 PendingIntent updateIntent = PendingIntent.getService(this, 0, updateOperation,
143 questionNumToDrawableId.get(i), null, updateIntent)
  /development/samples/browseable/Quiz/Wearable/src/com.example.android.wearable.quiz/
QuizListenerService.java 140 PendingIntent updateIntent = PendingIntent.getService(this, 0, updateOperation,
143 questionNumToDrawableId.get(i), null, updateIntent)
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ShareActionProvider.java 344 updateIntent(shareIntent);
369 updateIntent(launchIntent);
409 void updateIntent(Intent intent) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java 231 final Intent updateIntent = new Intent(DictionaryPackConstants.UPDATE_NOW_INTENT_ACTION);
233 updateIntent, PendingIntent.FLAG_CANCEL_CURRENT);
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 919 milliseconds