Searched refs:eventCategoryId (Results 1 – 4 of 4) sorted by relevance
/packages/apps/DeskClock/src/com/android/deskclock/data/ |
D | WidgetModel.kt | 34 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()
|
D | WidgetModel.java | 41 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()
|
D | DataModel.java | 933 public void updateWidgetCount(Class widgetClass, int count, @StringRes int eventCategoryId) { in updateWidgetCount() argument 935 mWidgetModel.updateWidgetCount(widgetClass, count, eventCategoryId); in updateWidgetCount()
|
D | DataModel.kt | 928 fun updateWidgetCount(widgetClass: Class<*>?, count: Int, @StringRes eventCategoryId: Int) { in updateWidgetCount() 930 mWidgetModel!!.updateWidgetCount(widgetClass!!, count, eventCategoryId) in updateWidgetCount()
|