Home
last modified time | relevance | path

Searched refs:eventCategoryId (Results 1 – 4 of 4) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/data/
DWidgetModel.kt34 fun updateWidgetCount(widgetClass: Class<*>, count: Int, @StringRes eventCategoryId: Int) { in updateWidgetCount()
37 Events.sendEvent(eventCategoryId, R.string.action_create, 0) in updateWidgetCount()
41 Events.sendEvent(eventCategoryId, R.string.action_delete, 0) in updateWidgetCount()
DWidgetModel.java41 void updateWidgetCount(Class widgetClass, int count, @StringRes int eventCategoryId) { in updateWidgetCount() argument
44 Events.sendEvent(eventCategoryId, R.string.action_create, 0); in updateWidgetCount()
47 Events.sendEvent(eventCategoryId, R.string.action_delete, 0); in updateWidgetCount()
DDataModel.java933 public void updateWidgetCount(Class widgetClass, int count, @StringRes int eventCategoryId) { in updateWidgetCount() argument
935 mWidgetModel.updateWidgetCount(widgetClass, count, eventCategoryId); in updateWidgetCount()
DDataModel.kt928 fun updateWidgetCount(widgetClass: Class<*>?, count: Int, @StringRes eventCategoryId: Int) { in updateWidgetCount()
930 mWidgetModel!!.updateWidgetCount(widgetClass!!, count, eventCategoryId) in updateWidgetCount()