Home
last modified time | relevance | path

Searched refs:widgetIds (Results 1 – 2 of 2) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/widget/
DBaseWidgetProvider.java101 static public String[][] getWidgetInfo(Context context, int[] widgetIds) { in getWidgetInfo() argument
102 final String[][] widgetInfo = new String[widgetIds.length][2]; in getWidgetInfo()
103 for (int i = 0; i < widgetIds.length; i++) { in getWidgetInfo()
107 widgetIds[i]); in getWidgetInfo()
399 private void migrateLegacyWidgets(Context context, int[] widgetIds) { in migrateLegacyWidgets() argument
400 for (int widgetId : widgetIds) { in migrateLegacyWidgets()
410 final int[] widgetIds = getCurrentWidgetIds(context); in validateAllWidgetInformation() local
411 for (int widgetId : widgetIds) { in validateAllWidgetInformation()
/packages/apps/Email/provider_src/com/android/email/provider/
DEmailProvider.java6147 int[] widgetIds = mAppWidgetManager.getAppWidgetIds(mEmailComponent); in notifyWidgets() local
6148 if (!Arrays.equals(widgetIds, mSavedWidgetIds)) { in notifyWidgets()
6149 mSavedWidgetIds = widgetIds; in notifyWidgets()
6150 String[][] widgetInfos = BaseWidgetProvider.getWidgetInfo(context, widgetIds); in notifyWidgets()