Home
last modified time | relevance | path

Searched refs:updateWidgetCount (Results 1 – 10 of 10) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DWidgetModel.kt34 fun updateWidgetCount(widgetClass: Class<*>, count: Int, @StringRes eventCategoryId: Int) { in updateWidgetCount() method
35 var delta = WidgetDAO.updateWidgetCount(mPrefs, widgetClass, count) in updateWidgetCount()
DWidgetModel.java41 void updateWidgetCount(Class widgetClass, int count, @StringRes int eventCategoryId) { in updateWidgetCount() method in WidgetModel
42 int delta = WidgetDAO.updateWidgetCount(mPrefs, widgetClass, count); in updateWidgetCount()
DWidgetDAO.kt34 fun updateWidgetCount( in updateWidgetCount() method
DWidgetDAO.java37 static int updateWidgetCount(SharedPreferences prefs, Class widgetProviderClass, int count) { in updateWidgetCount() method in WidgetDAO
DDataModel.java933 public void updateWidgetCount(Class widgetClass, int count, @StringRes int eventCategoryId) { in updateWidgetCount() method in DataModel
935 mWidgetModel.updateWidgetCount(widgetClass, count, eventCategoryId); in updateWidgetCount()
DDataModel.kt928 fun updateWidgetCount(widgetClass: Class<*>?, count: Int, @StringRes eventCategoryId: Int) { in updateWidgetCount() method
930 mWidgetModel!!.updateWidgetCount(widgetClass!!, count, eventCategoryId) in updateWidgetCount()
/packages/apps/DeskClock/src/com/android/alarmclock/
DAnalogAppWidgetProvider.kt43 dm.updateWidgetCount(javaClass, widgetCount, R.string.category_analog_widget) in <lambda>()
DAnalogAppWidgetProvider.java51 dm.updateWidgetCount(getClass(), widgetCount, R.string.category_analog_widget); in onReceive()
DDigitalAppWidgetProvider.java157 dm.updateWidgetCount(getClass(), widgetIds.length, R.string.category_digital_widget); in onReceive()
DDigitalAppWidgetProvider.kt129 dm.updateWidgetCount(javaClass, widgetIds.size, R.string.category_digital_widget) in <lambda>()