Home
last modified time | relevance | path

Searched refs:dotPosition (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBadgedImageView.java236 float[] dotPosition; in getDotCenter() local
238 dotPosition = mDotRenderer.getLeftDotPosition(); in getDotCenter()
240 dotPosition = mDotRenderer.getRightDotPosition(); in getDotCenter()
243 float dotCenterX = mTempBounds.width() * dotPosition[0]; in getDotCenter()
244 float dotCenterY = mTempBounds.height() * dotPosition[1]; in getDotCenter()
/aosp12/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
H A DDotRenderer.java107 float[] dotPosition = params.leftAlign ? mLeftDotPosition : mRightDotPosition; in draw() local
108 float dotCenterX = iconBounds.left + iconBounds.width() * dotPosition[0]; in draw()
109 float dotCenterY = iconBounds.top + iconBounds.height() * dotPosition[1]; in draw()