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

  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/view/
CircleClipFrameLayout.java 26 final Path mClipPath = new Path();
47 mClipPath.reset();
48 mClipPath.addOval(0, 0, getWidth(), getHeight(), Path.Direction.CW);
49 canvas.clipPath(mClipPath);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegion3Activity.java 51 private final Path mClipPath = new Path();
62 mClipPath.reset();
63 mClipPath.addCircle(0.0f, 0.0f, getWidth() / 4.0f, Path.Direction.CW);
72 canvas.clipPath(mClipPath);
ClipRegionActivity.java 59 private final Path mClipPath = new Path();
81 mClipPath.reset();
82 mClipPath.addCircle(mClipPosition * getWidth(), getHeight() / 2.0f,
85 canvas.clipPath(mClipPath);
ViewLayersActivity5.java 52 private final Path mClipPath = new Path();
75 mClipPath.reset();
76 mClipPath.addCircle(getWidth() / 2.0f, getHeight() / 2.0f,
79 canvas.clipPath(mClipPath);
  /packages/apps/Launcher3/src/com/android/launcher3/views/
TopRoundedCornerView.java 35 private final Path mClipPath = new Path();
65 canvas.clipPath(mClipPath);
79 mClipPath.reset();
80 mClipPath.addRoundRect(mRect, mRadii, Path.Direction.CW);
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
StyledCornersBitmapDrawable.java 60 private final Path mClipPath = new Path();
239 canvas.clipPath(mClipPath);
287 canvas.drawPath(mClipPath, mBorderPaint);
407 mClipPath.rewind();
411 mClipPath.moveTo(left, top);
415 mClipPath.arcTo(roundedCornerRectF, START_LEFT, QUARTER_CIRCLE);
418 mClipPath.moveTo(left, top - mCornerFlapSide);
419 mClipPath.lineTo(left + mCornerFlapSide, top);
425 mClipPath.lineTo(right, top);
429 mClipPath.arcTo(roundedCornerRectF, START_TOP, QUARTER_CIRCLE)
    [all...]
  /frameworks/base/core/java/android/widget/
SmartSelectSprite.java 124 private final Path mClipPath = new Path();
175 mClipPath.reset();
176 mClipPath.addRoundRect(
181 canvas.clipPath(mClipPath);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableOutlineView.java 61 private final Path mClipPath = new Path();
215 mClipPath);
216 intersectPath = mClipPath;

Completed in 337 milliseconds