/frameworks/base/libs/hwui/tests/common/scenes/ |
D | ClippingAnimation.cpp | 50 canvas.clipPath(&clipCircle, SkRegion::kIntersect_Op); in createContent()
|
/frameworks/base/libs/hwui/ |
D | CanvasState.cpp | 212 bool CanvasState::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::uirenderer::CanvasState 213 mSnapshot->clipPath(*path, op); in clipPath()
|
D | SkiaCanvas.cpp | 108 virtual bool clipPath(const SkPath* path, SkRegion::Op op) override; 219 virtual void clipPath(const SkPath& path, SkRegion::Op op, bool antialias) { in clipPath() function in android::ClipCopier 220 m_dstCanvas->clipPath(path, op, antialias); in clipPath() 498 bool SkiaCanvas::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::SkiaCanvas 499 mCanvas->clipPath(*path, op); in clipPath() 509 mCanvas->clipPath(rgnPath, op); in clipRegion()
|
D | CanvasState.h | 126 bool clipPath(const SkPath* path, SkRegion::Op op);
|
D | Snapshot.h | 146 void clipPath(const SkPath& path, SkRegion::Op op);
|
D | SkiaCanvasProxy.cpp | 387 mCanvas->clipPath(&path, op); in onClipRRect() 391 mCanvas->clipPath(&path, op); in onClipPath()
|
D | Snapshot.cpp | 96 void Snapshot::clipPath(const SkPath& path, SkRegion::Op op) { in clipPath() function in android::uirenderer::Snapshot
|
D | DisplayListCanvas.cpp | 201 bool DisplayListCanvas::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::uirenderer::DisplayListCanvas 204 return mState.clipPath(path, op); in clipPath()
|
D | RecordingCanvas.cpp | 236 bool RecordingCanvas::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::uirenderer::RecordingCanvas 237 return mState.clipPath(path, op); in clipPath()
|
D | DisplayListCanvas.h | 158 virtual bool clipPath(const SkPath* path, SkRegion::Op op) override;
|
D | RecordingCanvas.h | 135 virtual bool clipPath(const SkPath* path, SkRegion::Op op) override;
|
D | OpenGLRenderer.h | 320 bool clipPath(const SkPath* path, SkRegion::Op op);
|
D | VectorDrawable.cpp | 313 outCanvas->clipPath(renderPath, SkRegion::kIntersect_Op); in drawPath()
|
D | OpenGLRenderer.cpp | 2074 bool OpenGLRenderer::clipPath(const SkPath* path, SkRegion::Op op) { 2075 return mState.clipPath(path, op);
|
D | DisplayListOp.h | 563 renderer.clipPath(mPath, mOp); in applyState()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | ClipRegion3Activity.java | 72 canvas.clipPath(mClipPath); in dispatchDraw()
|
D | ClipRegionActivity.java | 85 canvas.clipPath(mClipPath); in dispatchDraw()
|
D | ViewLayersActivity5.java | 79 canvas.clipPath(mClipPath); in dispatchDraw()
|
/frameworks/base/libs/hwui/tests/unit/ |
D | CanvasStateTests.cpp | 111 state.clipPath(&path, SkRegion::kDifference_Op); in TEST()
|
/frameworks/base/core/java/android/widget/ |
D | RadialTimePickerView.java | 704 canvas.clipPath(selectorPath, Region.Op.DIFFERENCE); in drawHours() 711 canvas.clipPath(selectorPath, Region.Op.INTERSECT); in drawHours() 737 canvas.clipPath(selectorPath, Region.Op.DIFFERENCE); in drawMinutes() 744 canvas.clipPath(selectorPath, Region.Op.INTERSECT); in drawMinutes()
|
/frameworks/base/core/jni/ |
D | android_graphics_Canvas.cpp | 193 static jboolean clipPath(JNIEnv* env, jobject, jlong canvasHandle, jlong pathHandle, in clipPath() function 197 bool nonEmptyClip = get_canvas(canvasHandle)->clipPath(path, op); in clipPath() 600 {"native_clipPath","!(JJI)Z", (void*) CanvasJNI::clipPath},
|
/frameworks/base/libs/hwui/hwui/ |
D | Canvas.h | 163 virtual bool clipPath(const SkPath* path, SkRegion::Op op) = 0;
|
/frameworks/base/graphics/java/android/graphics/ |
D | Canvas.java | 790 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { in clipPath() method in Canvas 800 public boolean clipPath(@NonNull Path path) { in clipPath() method in Canvas 801 return clipPath(path, Region.Op.INTERSECT); in clipPath()
|
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
D | StyledCornersBitmapDrawable.java | 239 canvas.clipPath(mClipPath); in draw()
|
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/ |
D | VectorDrawableCompat.java | 1020 canvas.clipPath(mRenderPath, Region.Op.REPLACE); in drawPath()
|