Home
last modified time | relevance | path

Searched refs:defaultWidth (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Car/Launcher/docklib/src/com/android/car/docklib/view/animation/
DExcitementAnimationHelper.kt87 fromStrokeWidth = getStrokeWidth(view, defaultWidth = 0f), in getExcitementAnimator()
267 private fun getStrokeWidth(view: View?, defaultWidth: Float): Float { in getStrokeWidth()
268 return (view as? ShapeableImageView)?.strokeWidth ?: defaultWidth in getStrokeWidth()
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/util/
DWallpaperCropUtils.java97 final int defaultWidth, defaultHeight; in calculateCropSurfaceSize() local
99 defaultWidth = (int) (maxDim * wallpaperTravelToScreenWidthRatio(maxDim, minDim)); in calculateCropSurfaceSize()
101 defaultWidth = Math.max((int) (minDim * WALLPAPER_SCREENS_SPAN), maxDim); in calculateCropSurfaceSize()
105 return new Point(defaultWidth, defaultHeight); in calculateCropSurfaceSize()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DProximityInfo.java245 final int defaultWidth = mMostCommonKeyWidth; in computeNearestNeighbors() local
248 final int threshold = (int) (defaultWidth * SEARCH_DISTANCE); in computeNearestNeighbors()