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);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
ClippableFrameLayout.java 31 private Path mClipPath;
39 mClipPath = clipPath;
49 if (mClipPath != null) {
50 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);
  /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/packages/SystemUI/src/com/android/systemui/
BatteryMeterDrawable.java 83 private final Path mClipPath = new Path();
476 mClipPath.reset();
477 mClipPath.addRect(mFrame, Path.Direction.CCW);
478 mShapePath.op(mClipPath, Path.Op.INTERSECT);
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
FolderIcon.java 487 private Path mClipPath = new Path();
550 mClipPath.reset();
551 mClipPath.addCircle(radius, radius, radius, Path.Direction.CW);
582 canvas.clipPath(mClipPath, Region.Op.DIFFERENCE);
629 canvas.clipPath(mClipPath);
    [all...]

Completed in 1685 milliseconds