/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableOutlineView.java | 75 Path clipPath = getClipPath(false /* ignoreTranslation */); 76 if (clipPath != null) { 77 outline.setPath(clipPath); 175 Path clipPath = null; in drawChild() local 178 clipPath = getCustomClipPath(child); in drawChild() 179 if (clipPath == null) { in drawChild() 180 clipPath = getClipPath(false /* ignoreTranslation */); in drawChild() 185 childClipPath = clipPath; in drawChild() 186 clipPath = null; in drawChild() 193 if (clipPath != null) { in drawChild() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | MediaContainerView.kt | 36 var clipPath = Path() regex 67 clipPath.reset() 68 clipPath.addRoundRect(clipRect, cornerRadius, cornerRadius, Path.Direction.CW) 69 canvas.clipPath(clipPath)
|
H A D | NotificationChildrenContainer.java | 869 Path clipPath = mChildClipPath; 870 if (clipPath != null) { 882 clipPath.offset(translation, 0f); 883 canvas.clipPath(clipPath); 884 clipPath.offset(-translation, 0f); 886 canvas.clipPath(clipPath); 906 canvas.clipPath(mHeaderPath);
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/common/ui/drawable/ |
H A D | CircularDrawable.kt | 40 canvas.clipPath(path)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
H A D | CornerDrawable.kt | 39 canvas.clipPath(path)
|
/aosp14/frameworks/base/libs/hwui/tests/common/scenes/ |
H A D | ClippingAnimation.cpp | 50 canvas.clipPath(&clipCircle, SkClipOp::kIntersect); in createContent()
|
/aosp14/frameworks/base/libs/hwui/pipeline/skia/ |
H A D | RenderNodeDrawable.cpp | 97 canvas->clipPath(*path, SkClipOp::kIntersect, true); in clipOutline() 174 canvas->clipPath(*mProjectedDisplayList->mProjectedOutline->getPath()); in forceDraw() 427 canvas->clipPath(*properties.getRevealClip().getPath(), SkClipOp::kIntersect, true); in setViewProperties()
|
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | ClipRegion3Activity.java | 72 canvas.clipPath(mClipPath); in dispatchDraw()
|
H A D | ClipRegionActivity.java | 85 canvas.clipPath(mClipPath); in dispatchDraw()
|
H A D | ViewLayersActivity5.java | 79 canvas.clipPath(mClipPath); in dispatchDraw()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
H A D | MagnifierView.java | 126 canvas.clipPath(mOuterCircle); in onDraw() 128 canvas.clipPath(mInnerCircle); in onDraw()
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | RenderNode.cpp | 555 SkPath clipPath; in getClippedOutline() local 556 clipPath.addRect(clipRect); in getClippedOutline() 557 Op(*outlinePath, clipPath, kIntersect_SkPathOp, &mClippedOutlineCache.clippedOutline); in getClippedOutline()
|
H A D | SkiaCanvas.cpp | 86 canvas->clipPath(mPath.value(), mOp, true); in apply() 405 bool SkiaCanvas::clipPath(const SkPath* path, SkClipOp op) { in clipPath() function in android::SkiaCanvas 407 mCanvas->clipPath(*path, op, true); in clipPath() 423 mCanvas->clipPath(*path, SkClipOp::kIntersect, true); in replaceClipPath_deprecated()
|
H A D | RecordingCanvas.h | 143 void clipPath(const SkPath&, SkClipOp, bool aa);
|
H A D | SkiaCanvas.h | 98 virtual bool clipPath(const SkPath* path, SkClipOp op) override;
|
/aosp14/frameworks/base/graphics/java/android/graphics/ |
H A D | Canvas.java | 1048 public boolean clipPath(@NonNull Path path, @NonNull Region.Op op) { in clipPath() method in Canvas 1059 public boolean clipPath(@NonNull Path path) { in clipPath() method in Canvas 1060 return clipPath(path, Region.Op.INTERSECT); in clipPath() 1070 return clipPath(path, Region.Op.DIFFERENCE); in clipOutPath()
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A D | RadialTimePickerView.java | 732 canvas.clipPath(selectorPath, Region.Op.DIFFERENCE); in drawHours() 739 canvas.clipPath(selectorPath, Region.Op.INTERSECT); in drawHours() 765 canvas.clipPath(selectorPath, Region.Op.DIFFERENCE); in drawMinutes() 772 canvas.clipPath(selectorPath, Region.Op.INTERSECT); in drawMinutes()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/privacy/television/ |
H A D | PrivacyChipDrawable.java | 179 canvas.clipPath(mPath); in clipToForeground()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/draganddrop/ |
H A D | DropZoneView.java | 277 canvas.clipPath(mPath); in onDraw()
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/ |
H A D | MessagingImageMessage.java | 161 canvas.clipPath(getRoundedRectPath()); in onDraw()
|
/aosp14/frameworks/base/libs/hwui/hwui/ |
H A D | Canvas.h | 189 virtual bool clipPath(const SkPath* path, SkClipOp op) = 0;
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/ |
H A D | SplashscreenIconDrawableFactory.java | 208 canvas.clipPath(mMaskScaleOnly); in draw()
|
/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | android_graphics_Canvas.cpp | 235 static jboolean clipPath(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle, jlong pathHandle, in clipPath() function 243 nonEmptyClip = get_canvas(canvasHandle)->clipPath(path, static_cast<SkClipOp>(rgnOp)); in clipPath() 765 {"nClipPath","(JJI)Z", (void*) CanvasJNI::clipPath},
|
/aosp14/frameworks/base/libs/hwui/canvas/ |
H A D | CanvasOps.h | 116 void draw(SkCanvas* canvas) const { canvas->clipPath(path, op, true); }
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/ |
H A D | ThemedBatteryDrawable.kt | 233 c.clipPath(scaledFill)
|