/frameworks/base/libs/hwui/ |
D | SkiaCanvas.cpp | 82 virtual bool clipPath(const SkPath* path, SkRegion::Op op) override; 175 virtual void clipPath(const SkPath& path, SkRegion::Op op, bool antialias) { in clipPath() function in android::ClipCopier 176 m_dstCanvas->clipPath(path, op, antialias); in clipPath() 426 bool SkiaCanvas::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::SkiaCanvas 427 mCanvas->clipPath(*path, op); in clipPath() 437 mCanvas->clipPath(rgnPath, op); in clipRegion()
|
D | CanvasState.cpp | 162 bool CanvasState::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::uirenderer::CanvasState 163 mDirtyClip |= mSnapshot->clipPath(*path, op); in clipPath()
|
D | CanvasState.h | 121 bool clipPath(const SkPath* path, SkRegion::Op op);
|
D | Snapshot.h | 146 bool clipPath(const SkPath& path, SkRegion::Op op);
|
D | Canvas.h | 100 virtual bool clipPath(const SkPath* path, SkRegion::Op op) = 0;
|
D | SkiaCanvasProxy.cpp | 351 mCanvas->clipPath(&path, op); in onClipRRect() 355 mCanvas->clipPath(&path, op); in onClipPath()
|
D | Snapshot.cpp | 98 bool Snapshot::clipPath(const SkPath& path, SkRegion::Op op) { in clipPath() function in android::uirenderer::Snapshot
|
D | DisplayListCanvas.cpp | 211 bool DisplayListCanvas::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::uirenderer::DisplayListCanvas 214 return mState.clipPath(path, op); in clipPath()
|
D | DisplayListCanvas.h | 182 virtual bool clipPath(const SkPath* path, SkRegion::Op op) override;
|
D | OpenGLRenderer.h | 391 bool clipPath(const SkPath* path, SkRegion::Op op);
|
D | OpenGLRenderer.cpp | 2185 bool OpenGLRenderer::clipPath(const SkPath* path, SkRegion::Op op) { 2186 return mState.clipPath(path, op);
|
D | DisplayListOp.h | 581 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/core/jni/ |
D | android_graphics_Canvas.cpp | 182 static jboolean clipPath(JNIEnv* env, jobject, jlong canvasHandle, jlong pathHandle, in clipPath() function 186 bool nonEmptyClip = get_canvas(canvasHandle)->clipPath(path, op); in clipPath() 692 {"native_clipPath","(JJI)Z", (void*) CanvasJNI::clipPath},
|
/frameworks/base/graphics/java/android/graphics/ |
D | Canvas.java | 796 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { in clipPath() method in Canvas 806 public boolean clipPath(@NonNull Path path) { in clipPath() method in Canvas 807 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/base/core/java/android/widget/ |
D | RadialTimePickerView.java | 694 canvas.clipPath(mSelectorPath, Region.Op.DIFFERENCE); in drawMinutes() 703 canvas.clipPath(mSelectorPath, Region.Op.INTERSECT); in drawMinutes()
|
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/ |
D | VectorDrawableCompat.java | 880 canvas.clipPath(mRenderPath, Region.Op.REPLACE); in drawPath()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | VectorDrawable.java | 1090 canvas.clipPath(mRenderPath); in drawPath()
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | hardware-accel.jd | 306 <td class="label_pos">clipPath()</td>
|
/frameworks/base/api/ |
D | current.txt | 11134 method public boolean clipPath(android.graphics.Path, android.graphics.Region.Op); 11135 method public boolean clipPath(android.graphics.Path);
|
D | system-current.txt | 11471 method public boolean clipPath(android.graphics.Path, android.graphics.Region.Op); 11472 method public boolean clipPath(android.graphics.Path);
|