HomeSort by relevance Sort by last modified time
    Searched refs:mOutline (Results 1 - 9 of 9) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/util/
PillWidthRevealOutlineProvider.java 31 mOutline.set(pillRect);
38 mOutline.left = (int) (progress * mPillRect.left + (1 - progress) * mStartLeft);
39 mOutline.right = (int) (progress * mPillRect.right + (1 - progress) * mStartRight);
CircleRevealOutlineProvider.java 52 mOutline.left = (int) (mCenterX - mOutlineRadius);
53 mOutline.top = (int) (mCenterY - mOutlineRadius);
54 mOutline.right = (int) (mCenterX + mOutlineRadius);
55 mOutline.bottom = (int) (mCenterY + mOutlineRadius);
PillRevealOutlineProvider.java 60 mOutline.left = Math.max(mPillRect.left, mCenterX - currentSize);
61 mOutline.top = Math.max(mPillRect.top, mCenterY - currentSize);
62 mOutline.right = Math.min(mPillRect.right, mCenterX + currentSize);
63 mOutline.bottom = Math.min(mPillRect.bottom, mCenterY + currentSize);
64 mOutlineRadius = mOutline.height() / 2;
RevealOutlineAnimation.java 19 protected Rect mOutline;
23 mOutline = new Rect();
84 outline.setRoundRect(mOutline, mOutlineRadius);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
FabDrawable.java 52 private Outline mOutline;
186 mOutline = outline;
207 if (mOutline != null) {
208 mOutline.setRoundRect(
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 239 mOutline[OUTLINE_EMPTY]);
259 public Bitmap mOutline[] = new Bitmap[3];
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
757 mOutline = outline
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DeepShortcutView.java 225 float height = mOutline.height();
228 float pivotX = mPivotLeft ? (mOutline.left + height / 2) : (mOutline.right - height / 2);
  /frameworks/base/libs/hwui/
RenderProperties.h 565 return mPrimitiveFields.mOutline;
581 return mPrimitiveFields.mOutline;
648 Outline mOutline;
RenderProperties.cpp 166 auto& outline = mPrimitiveFields.mOutline;

Completed in 439 milliseconds