/frameworks/base/core/jni/android/graphics/ |
D | SkiaCanvas.cpp | 85 virtual bool clipPath(const SkPath* path, SkRegion::Op op); 185 virtual void clipPath(const SkPath& path, SkRegion::Op op, bool antialias) { in clipPath() function in android::ClipCopier 186 m_dstCanvas->clipPath(path, op, antialias); in clipPath() 436 bool SkiaCanvas::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::SkiaCanvas 437 mCanvas->clipPath(*path, op); in clipPath() 447 mCanvas->clipPath(rgnPath, op); in clipRegion()
|
/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/ |
D | StatefulBaseRenderer.cpp | 162 return StatefulBaseRenderer::clipPath(&path, op); in clipRect() 165 bool StatefulBaseRenderer::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::uirenderer::StatefulBaseRenderer
|
D | StatefulBaseRenderer.h | 89 virtual bool clipPath(const SkPath* path, SkRegion::Op op);
|
D | Renderer.h | 173 virtual bool clipPath(const SkPath* path, SkRegion::Op op) = 0;
|
D | DisplayListRenderer.cpp | 169 bool DisplayListRenderer::clipPath(const SkPath* path, SkRegion::Op op) { in clipPath() function in android::uirenderer::DisplayListRenderer 172 return StatefulBaseRenderer::clipPath(path, op); in clipPath()
|
D | DisplayListRenderer.h | 95 virtual bool clipPath(const SkPath* path, SkRegion::Op op);
|
D | DisplayListOp.h | 573 renderer.clipPath(mPath, mOp); in applyState()
|
/frameworks/base/include/private/graphics/ |
D | Canvas.h | 79 virtual bool clipPath(const SkPath* path, SkRegion::Op op) = 0;
|
/frameworks/base/graphics/java/android/graphics/ |
D | Canvas.java | 809 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { in clipPath() method in Canvas 819 public boolean clipPath(@NonNull Path path) { in clipPath() method in Canvas 820 return clipPath(path, Region.Op.INTERSECT); in clipPath()
|
/frameworks/base/core/jni/ |
D | android_graphics_Canvas.cpp | 172 static jboolean clipPath(JNIEnv* env, jobject, jlong canvasHandle, jlong pathHandle, in clipPath() function 176 bool emptyClip = get_canvas(canvasHandle)->clipPath(path, op); in clipPath() 707 {"native_clipPath","(JJI)Z", (void*) CanvasJNI::clipPath},
|
D | android_view_GLES20Canvas.cpp | 273 const bool result = renderer->clipPath(path, static_cast<SkRegion::Op>(op)); in android_view_GLES20Canvas_clipPath()
|
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
D | StyledCornersBitmapDrawable.java | 230 canvas.clipPath(mClipPath); in draw()
|
/frameworks/base/core/java/android/view/ |
D | GLES20Canvas.java | 280 public boolean clipPath(Path path) { in clipPath() method in GLES20Canvas 285 public boolean clipPath(Path path, Region.Op op) { in clipPath() method in GLES20Canvas
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | VectorDrawable.java | 954 canvas.clipPath(mRenderPath, Region.Op.REPLACE); in drawPath()
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | hardware-accel.jd | 306 <td class="label_pos">clipPath()</td>
|
/frameworks/base/api/ |
D | system-current.txt | 10896 method public boolean clipPath(android.graphics.Path, android.graphics.Region.Op); 10897 method public boolean clipPath(android.graphics.Path);
|
D | current.txt | 10590 method public boolean clipPath(android.graphics.Path, android.graphics.Region.Op); 10591 method public boolean clipPath(android.graphics.Path);
|