Home | History | Annotate | Download | only in systemui

Lines Matching refs:mFrame

68     private final RectF mFrame = new RectF();
317 mFrame.set(0, 0, width, height);
318 mFrame.offset(pl, pt);
322 mFrame.left + Math.round(width * 0.25f),
323 mFrame.top,
324 mFrame.right - Math.round(width * 0.25f),
325 mFrame.top + buttonHeight);
332 mFrame.top += buttonHeight;
333 mFrame.left += mSubpixelSmoothingLeft;
334 mFrame.top += mSubpixelSmoothingLeft;
335 mFrame.right -= mSubpixelSmoothingRight;
336 mFrame.bottom -= mSubpixelSmoothingRight;
348 : (mFrame.top + (mFrame.height() * (1f - drawFrac)));
354 mShapePath.lineTo(mButtonFrame.right, mFrame.top);
355 mShapePath.lineTo(mFrame.right, mFrame.top);
356 mShapePath.lineTo(mFrame.right, mFrame.bottom);
357 mShapePath.lineTo(mFrame.left, mFrame.bottom);
358 mShapePath.lineTo(mFrame.left, mFrame.top);
359 mShapePath.lineTo(mButtonFrame.left, mFrame.top);
364 final float bl = mFrame.left + mFrame.width() / 4.5f;
365 final float bt = mFrame.top + mFrame.height() / 6f;
366 final float br = mFrame.right - mFrame.width() / 7f;
367 final float bb = mFrame.bottom - mFrame.height() / 10f;
423 mFrame.top = levelTop;
425 mClipPath.addRect(mFrame, Path.Direction.CCW);