Searched refs:widgetIds (Results 1 – 4 of 4) sorted by relevance
/packages/apps/UnifiedEmail/src/com/android/mail/widget/ |
D | BaseWidgetProvider.java | 105 static public String[][] getWidgetInfo(Context context, int[] widgetIds) { in getWidgetInfo() argument 106 final String[][] widgetInfo = new String[widgetIds.length][2]; in getWidgetInfo() 107 for (int i = 0; i < widgetIds.length; i++) { in getWidgetInfo() 111 widgetIds[i]); in getWidgetInfo() 415 private void migrateLegacyWidgets(Context context, int[] widgetIds) { in migrateLegacyWidgets() argument 416 for (int widgetId : widgetIds) { in migrateLegacyWidgets() 426 final int[] widgetIds = getCurrentWidgetIdsIfSupported(context); in validateAllWidgetInformation() local 427 for (int widgetId : widgetIds) { in validateAllWidgetInformation()
|
/packages/apps/DeskClock/src/com/android/alarmclock/ |
D | DigitalAppWidgetProvider.java | 138 final int[] widgetIds = wm.getAppWidgetIds(provider); in onReceive() local 151 for (int widgetId : widgetIds) { in onReceive() 157 dm.updateWidgetCount(getClass(), widgetIds.length, R.string.category_digital_widget); in onReceive() 159 if (widgetIds.length > 0) { in onReceive() 168 public void onUpdate(Context context, AppWidgetManager wm, int[] widgetIds) { in onUpdate() argument 169 super.onUpdate(context, wm, widgetIds); in onUpdate() 171 for (int widgetId : widgetIds) { in onUpdate()
|
D | AnalogAppWidgetProvider.java | 58 public void onUpdate(Context context, AppWidgetManager wm, int[] widgetIds) { in onUpdate() argument 59 super.onUpdate(context, wm, widgetIds); in onUpdate() 61 for (int widgetId : widgetIds) { in onUpdate()
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
D | EmailProvider.java | 6151 int[] widgetIds = mAppWidgetManager.getAppWidgetIds(mEmailComponent); in notifyWidgets() local 6152 if (!Arrays.equals(widgetIds, mSavedWidgetIds)) { in notifyWidgets() 6153 mSavedWidgetIds = widgetIds; in notifyWidgets() 6154 String[][] widgetInfos = BaseWidgetProvider.getWidgetInfo(context, widgetIds); in notifyWidgets()
|