Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
DSignalDrawable.java219 float dotSize = (DOT_SIZE * height); in draw() local
221 float dotSpacing = dotPadding + dotSize; in draw()
222 float x = width - padding - dotSize; in draw()
223 float y = height - padding - dotSize; in draw()
225 drawDotAndPadding(x, y, dotPadding, dotSize, 2); in draw()
226 drawDotAndPadding(x - dotSpacing, y, dotPadding, dotSize, 1); in draw()
227 drawDotAndPadding(x - dotSpacing * 2, y, dotPadding, dotSize, 0); in draw()
248 float dotPadding, float dotSize, int i) { in drawDotAndPadding() argument
251 mForegroundPath.addRect(x, y, x + dotSize, y + dotSize, Direction.CW); in drawDotAndPadding()
253 mCutoutPath.addRect(x - dotPadding, y - dotPadding, x + dotSize + dotPadding, in drawDotAndPadding()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
DSystemEventChipAnimationController.kt66 private val dotSize = context.resources.getDimensionPixelSize( constant
158 val width2 = ValueAnimator.ofInt(chipMinWidth, dotSize).apply { in createMoveOutAnimationForDot()
167 val keyFrame1Height = dotSize * 2 in createMoveOutAnimationForDot()
178 val height2 = ValueAnimator.ofInt(keyFrame1Height, dotSize).apply { in createMoveOutAnimationForDot()
189 val moveOut = ValueAnimator.ofInt(0, dotSize).apply { in createMoveOutAnimationForDot()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/ui/viewmodel/
DPatternBouncerViewModelTest.kt70 private val dotSize = 30 // px in <lambda>() constant
355 xPx = dotSize * coordinate.x + 15f, in <lambda>()
356 yPx = dotSize * coordinate.y + 15f, in <lambda>()