Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBadgedImageView.java266 float[] dotPosition; in getDotCenter() local
268 dotPosition = mDotRenderer.getLeftDotPosition(); in getDotCenter()
270 dotPosition = mDotRenderer.getRightDotPosition(); in getDotCenter()
273 float dotCenterX = mTempBounds.width() * dotPosition[0]; in getDotCenter()
274 float dotCenterY = mTempBounds.height() * dotPosition[1]; in getDotCenter()
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
DDotRenderer.java111 float[] dotPosition = params.leftAlign ? mLeftDotPosition : mRightDotPosition; in draw() local
112 float dotCenterX = iconBounds.left + iconBounds.width() * dotPosition[0]; in draw()
113 float dotCenterY = iconBounds.top + iconBounds.height() * dotPosition[1]; in draw()