OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mClipPath
(Results
1 - 5
of
5
) sorted by null
/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
57
private final Path
mClipPath
= new Path();
230
canvas.clipPath(
mClipPath
);
278
canvas.drawPath(
mClipPath
, mBorderPaint);
379
mClipPath
.rewind();
383
mClipPath
.moveTo(left, top);
387
mClipPath
.arcTo(roundedCornerRectF, START_LEFT, QUARTER_CIRCLE);
390
mClipPath
.moveTo(left, top - mCornerFlapSide);
391
mClipPath
.lineTo(left + mCornerFlapSide, top);
397
mClipPath
.lineTo(right, top);
401
mClipPath
.arcTo(roundedCornerRectF, START_TOP, QUARTER_CIRCLE)
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
BatteryMeterView.java
73
private final Path
mClipPath
= new Path();
424
mClipPath
.reset();
425
mClipPath
.addRect(mFrame, Path.Direction.CCW);
426
mShapePath.op(
mClipPath
, Path.Op.INTERSECT);
Completed in 538 milliseconds