Home
last modified time | relevance | path

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

/packages/apps/Launcher3/tests/src/com/android/launcher3/folder/
DPreviewItemManagerTest.kt140 val drawingParams = PreviewItemDrawingParams(0f, 0f, 0f) in checkThemedIconWithThemingOn_iconShouldBeThemed() constant
142 previewItemManager.setDrawable(drawingParams, folderItems[0]) in checkThemedIconWithThemingOn_iconShouldBeThemed()
144 assert((drawingParams.drawable as FastBitmapDrawable).isThemed) in checkThemedIconWithThemingOn_iconShouldBeThemed()
150 val drawingParams = PreviewItemDrawingParams(0f, 0f, 0f) in checkThemedIconWithThemingOff_iconShouldNotBeThemed() constant
152 previewItemManager.setDrawable(drawingParams, folderItems[0]) in checkThemedIconWithThemingOff_iconShouldNotBeThemed()
154 assert(!(drawingParams.drawable as FastBitmapDrawable).isThemed) in checkThemedIconWithThemingOff_iconShouldNotBeThemed()
160 val drawingParams = PreviewItemDrawingParams(0f, 0f, 0f) in checkUnthemedIconWithThemingOn_iconShouldNotBeThemed() constant
162 previewItemManager.setDrawable(drawingParams, folderItems[1]) in checkUnthemedIconWithThemingOn_iconShouldNotBeThemed()
164 assert(!(drawingParams.drawable as FastBitmapDrawable).isThemed) in checkUnthemedIconWithThemingOn_iconShouldNotBeThemed()
170 val drawingParams = PreviewItemDrawingParams(0f, 0f, 0f) in checkUnthemedIconWithThemingOff_iconShouldNotBeThemed() constant
[all …]
/packages/apps/Calendar/src/com/android/calendar/month/
DSimpleWeeksAdapter.kt161 var drawingParams: HashMap<String?, Int?>? = null in getView() variable
165 drawingParams = v.getTag() as HashMap<String?, Int?> in getView()
176 if (drawingParams == null) { in getView()
177 drawingParams = HashMap<String?, Int?>() in getView()
179 drawingParams.clear() in getView()
186 drawingParams.put( in getView()
190 drawingParams.put(SimpleWeekView.VIEW_PARAMS_SELECTED_DAY, selectedDay) in getView()
191 drawingParams.put(SimpleWeekView.VIEW_PARAMS_SHOW_WK_NUM, if (mShowWeekNumber) 1 else 0) in getView()
192 drawingParams.put(SimpleWeekView.VIEW_PARAMS_WEEK_START, mFirstDayOfWeek) in getView()
193 drawingParams.put(SimpleWeekView.VIEW_PARAMS_NUM_DAYS, mDaysPerWeek) in getView()
[all …]
DMonthByWeekAdapter.kt164 var drawingParams: HashMap<String?, Int?>? = null in getView() variable
185 drawingParams = v.getTag() as HashMap<String?, Int?> in getView()
190 if (drawingParams == null) { in getView()
191 drawingParams = HashMap<String?, Int?>() in getView()
193 drawingParams.clear() in getView()
201 drawingParams.put( in getView()
205 drawingParams.put(SimpleWeekView.VIEW_PARAMS_SELECTED_DAY, selectedDay) in getView()
206 drawingParams.put(SimpleWeekView.VIEW_PARAMS_SHOW_WK_NUM, if (mShowWeekNumber) 1 else 0) in getView()
207 drawingParams.put(SimpleWeekView.VIEW_PARAMS_WEEK_START, mFirstDayOfWeek) in getView()
208 drawingParams.put(SimpleWeekView.VIEW_PARAMS_NUM_DAYS, mDaysPerWeek) in getView()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DGestureStrokeDrawingPoints.java42 public GestureStrokeDrawingPoints(final GestureStrokeDrawingParams drawingParams) { in GestureStrokeDrawingPoints() argument
43 mDrawingParams = drawingParams; in GestureStrokeDrawingPoints()