Searched refs:mOutline (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/anim/
H A DCircleRevealOutlineProvider.java48 mOutline.left = (int) (mCenterX - mOutlineRadius);
49 mOutline.top = (int) (mCenterY - mOutlineRadius);
50 mOutline.right = (int) (mCenterX + mOutlineRadius);
51 mOutline.bottom = (int) (mCenterY + mOutlineRadius);
H A DRoundedRectRevealOutlineProvider.java66 mOutline.left = (int) ((1 - progress) * mStartRect.left + progress * mEndRect.left);
67 mOutline.top = (int) ((1 - progress) * mStartRect.top + progress * mEndRect.top);
69 mOutline.top -= mOutlineRadius;
71 mOutline.right = (int) ((1 - progress) * mStartRect.right + progress * mEndRect.right);
72 mOutline.bottom = (int) ((1 - progress) * mStartRect.bottom + progress * mEndRect.bottom);
74 mOutline.bottom += mOutlineRadius;
H A DRevealOutlineAnimation.java19 protected Rect mOutline; field in class:RevealOutlineAnimation
23 mOutline = new Rect();
84 outline.setRoundRect(mOutline, mOutlineRadius);
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
H A DFabDrawable.java53 private Outline mOutline; field in class:FabDrawable
187 mOutline = outline;
208 if (mOutline != null) {
209 mOutline.setRoundRect(
/packages/apps/Gallery/src/com/android/camera/
H A DGridViewSpecial.java239 mOutline[OUTLINE_EMPTY]);
259 public Bitmap mOutline[] = new Bitmap[3]; field in class:GridViewSpecial
265 for (int i = 0; i < mOutline.length; i++) {
266 mOutline[i] = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
275 canvas.setBitmap(mOutline[OUTLINE_EMPTY]);
279 canvas.setBitmap(mOutline[OUTLINE_PRESSED]);
284 canvas.setBitmap(mOutline[OUTLINE_SELECTED]);
708 canvas.drawBitmap(mOutline[type], xPos, yTop, null);
734 private final Bitmap mOutline; // The outline bitmap put on top of each field in class:ImageBlockManager
757 mOutline
[all...]

Completed in 1060 milliseconds