Searched refs:clipPath (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableOutlineView.java97 Path clipPath = getClipPath();
98 if (clipPath != null && clipPath.isConvex()) {
101 outline.setConvexPath(clipPath);
220 Path clipPath = getCustomClipPath(child);
221 if (clipPath == null) {
222 clipPath = getClipPath();
224 if (clipPath != null) {
226 clipPath.op(intersectPath, Path.Op.INTERSECT);
228 canvas.clipPath(clipPat
[all...]
/frameworks/base/libs/hwui/tests/common/scenes/
H A DClippingAnimation.cpp48 canvas.clipPath(&clipCircle, SkClipOp::kIntersect);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DClipRegion3Activity.java72 canvas.clipPath(mClipPath);
H A DClipRegionActivity.java85 canvas.clipPath(mClipPath);
H A DViewLayersActivity5.java79 canvas.clipPath(mClipPath);
/frameworks/base/libs/hwui/
H A DCanvasState.h123 bool clipPath(const SkPath* path, SkClipOp op);
H A DCanvasState.cpp203 bool CanvasState::clipPath(const SkPath* path, SkClipOp op) { function in class:android::uirenderer::CanvasState
204 mSnapshot->clipPath(*path, op);
H A DSnapshot.h120 void clipPath(const SkPath& path, SkClipOp op);
H A DRenderNode.cpp544 SkPath clipPath; local
545 clipPath.addRect(clipRect);
546 Op(*outlinePath, clipPath, kIntersect_SkPathOp, &mClippedOutlineCache.clippedOutline);
H A DSnapshot.cpp80 void Snapshot::clipPath(const SkPath& path, SkClipOp op) { function in class:android::uirenderer::Snapshot
H A DSkiaCanvasProxy.cpp478 mCanvas->clipPath(&path, op);
482 mCanvas->clipPath(&path, op);
H A DSkiaCanvas.h88 virtual bool clipPath(const SkPath* path, SkClipOp op) override;
H A DSkiaCanvas.cpp234 canvas->clipPath(*mPath.get(), mOp);
401 bool SkiaCanvas::clipPath(const SkPath* path, SkClipOp op) { function in class:android::SkiaCanvas
403 mCanvas->clipPath(*path, op);
H A DRecordingCanvas.h131 virtual bool clipPath(const SkPath* path, SkClipOp op) override;
H A DRecordingCanvas.cpp232 bool RecordingCanvas::clipPath(const SkPath* path, SkClipOp op) { function in class:android::uirenderer::RecordingCanvas
233 return mState.clipPath(path, op);
H A DVectorDrawable.cpp267 outCanvas->clipPath(getUpdatedPath(useStagingData, &tempStagingPath));
/frameworks/base/libs/hwui/tests/unit/
H A DCanvasStateTests.cpp108 state.clipPath(&path, SkClipOp::kDifference);
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingImageMessage.java139 canvas.clipPath(getRoundedRectPath());
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java387 * clipPath will all operate as usual, but when the balancing call to
405 * clipPath will all operate as usual, but when the balancing call to
999 * recommended alternative calls are {@link #clipPath(Path)} and
1006 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { method in class:Canvas
1017 public boolean clipPath(@NonNull Path path) { method in class:Canvas
1018 return clipPath(path, Region.Op.INTERSECT);
1028 return clipPath(path, Region.Op.DIFFERENCE);
1033 * clipRect() and clipPath() which transform their arguments by the
1053 * clipRect() and clipPath() which transform their arguments by the
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java729 canvas.clipPath(selectorPath, Region.Op.DIFFERENCE);
736 canvas.clipPath(selectorPath, Region.Op.INTERSECT);
762 canvas.clipPath(selectorPath, Region.Op.DIFFERENCE);
769 canvas.clipPath(selectorPath, Region.Op.INTERSECT);
H A DSmartSelectSprite.java181 canvas.clipPath(mClipPath);
/frameworks/base/libs/hwui/hwui/
H A DCanvas.h205 virtual bool clipPath(const SkPath* path, SkClipOp op) = 0;
/frameworks/base/libs/hwui/pipeline/skia/
H A DRenderNodeDrawable.cpp298 canvas->clipPath(*properties.getRevealClip().getPath(), SkClipOp::kIntersect, true);
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp207 static jboolean clipPath(jlong canvasHandle, jlong pathHandle, function in namespace:android::CanvasJNI
210 bool nonEmptyClip = get_canvas(canvasHandle)->clipPath(path, opHandleToClipOp(opHandle));
623 {"nClipPath","(JJI)Z", (void*) CanvasJNI::clipPath},
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DStyledCornersBitmapDrawable.java239 canvas.clipPath(mClipPath);

Completed in 370 milliseconds

12