/aosp14/frameworks/base/libs/hwui/pipeline/skia/ |
H A D | GLFunctorDrawable.cpp | 86 SkIRect clipBounds = canvas->getDeviceClipBounds(); in onDraw() local 93 if (fboID != 0 && !surfaceBounds.contains(clipBounds)) { in onDraw() 96 canvas->imageInfo().makeWH(clipBounds.width(), clipBounds.height()); in onDraw() 113 mat4.preTranslate(-clipBounds.fLeft, -clipBounds.fTop); in onDraw() 114 clipBounds.offsetTo(0, 0); in onDraw() 120 clipBounds.offset(-surfaceBounds.fLeft, -surfaceBounds.fTop); in onDraw() 125 info.clipLeft = clipBounds.fLeft; in onDraw() 126 info.clipTop = clipBounds.fTop; in onDraw() 127 info.clipRight = clipBounds.fRight; in onDraw() 128 info.clipBottom = clipBounds.fBottom; in onDraw()
|
H A D | VkInteropFunctorDrawable.cpp | 132 SkIRect clipBounds = canvas->getDeviceClipBounds(); in onDraw() local 134 info.clipLeft = clipBounds.fLeft; in onDraw() 135 info.clipTop = clipBounds.fTop; in onDraw() 136 info.clipRight = clipBounds.fRight; in onDraw() 137 info.clipBottom = clipBounds.fBottom; in onDraw()
|
H A D | ReorderBarrierDrawables.cpp | 163 Rect clipBounds; in drawShadow() local 164 casterProperties.getClippingRectForFlags(CLIP_TO_CLIP_BOUNDS, &clipBounds); in drawShadow() 165 casterClipRect = clipBounds.toSkRect(); in drawShadow()
|
H A D | RenderNodeDrawable.cpp | 233 auto clipBounds = canvas->getLocalClipBounds(); in drawContent() local 259 subset, clipBounds.roundOut(), in drawContent() 264 recordingContext, layerProperties.getImageFilter(), clipBounds.roundOut()); in drawContent()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/ |
H A D | TransitionLayout.kt | 168 val clipBounds = child.clipBounds ?: Rect() regex 169 clipBounds.set(clipShift, 0, widgetState.width + clipShift, widgetState.height) 170 child.clipBounds = clipBounds
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardStatusViewController.java | 365 public void setClipBounds(Rect clipBounds) { in setClipBounds() argument 366 if (clipBounds != null) { in setClipBounds() 367 mClipBounds.set(clipBounds.left, (int) (clipBounds.top - mView.getY()), in setClipBounds() 368 clipBounds.right, (int) (clipBounds.bottom - mView.getY())); in setClipBounds()
|
/aosp14/frameworks/base/core/java/android/widget/inline/ |
H A D | InlineContentView.java | 220 public void setClipBounds(Rect clipBounds) { in setClipBounds() argument 221 super.setClipBounds(clipBounds); in setClipBounds() 222 mSurfaceView.setClipBounds(clipBounds); in setClipBounds()
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | RenderNode.cpp | 337 const SkIRect& clipBounds in updateSnapshotIfRequired() argument 353 mImageFilterClipBounds = clipBounds; in updateSnapshotIfRequired() 357 mImageFilterClipBounds != clipBounds || in updateSnapshotIfRequired() 364 clipBounds, in updateSnapshotIfRequired() 368 mImageFilterClipBounds = clipBounds; in updateSnapshotIfRequired()
|
H A D | RenderProperties.h | 193 bool setClipBounds(const Rect& clipBounds) { in setClipBounds() argument 195 return RP_SET(mPrimitiveFields.mClipBounds, clipBounds) || ret; in setClipBounds()
|
H A D | RenderNode.h | 366 const SkIRect& clipBounds);
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | MediaContainerView.kt | 63 val bounds = canvas.clipBounds
|
H A D | NotificationStackScrollLayout.java | 3333 Rect clipBounds = child.getClipBounds(); in generateChildRemovalEvents() local 3334 childWasSwipedOut = clipBounds != null && clipBounds.height() == 0; in generateChildRemovalEvents()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/ |
H A D | MediaHierarchyManager.kt | 177 applyState(currentBounds, currentAlpha, clipBounds = currentClipping) 851 applyState(targetBounds, carouselAlpha, clipBounds = targetClipping) 995 clipBounds: Rect = EMPTY_RECT 999 currentClipping = clipBounds
|
/aosp14/frameworks/base/libs/hwui/jni/ |
H A D | android_graphics_Canvas.cpp | 228 SkRect clipBounds; // ignored in clipRect() local 229 nonEmptyClip = get_canvas(canvasHandle)->getClipBounds(&clipBounds); in clipRect() 250 SkRect clipBounds; // ignored in clipPath() local 251 nonEmptyClip = get_canvas(canvasHandle)->getClipBounds(&clipBounds); in clipPath()
|
H A D | android_graphics_RenderNode.cpp | 120 android::uirenderer::Rect clipBounds(left, top, right, bottom); in android_view_RenderNode_setClipBounds() local 121 return SET_AND_DIRTY(setClipBounds, clipBounds, RenderNode::GENERIC); in android_view_RenderNode_setClipBounds()
|
/aosp14/frameworks/base/libs/hwui/tests/unit/ |
H A D | RenderNodeDrawableTests.cpp | 177 SkRect clipBounds; in getRecorderClipBounds() local 178 recorder.getClipBounds(&clipBounds); in getRecorderClipBounds() 179 return clipBounds; in getRecorderClipBounds()
|
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/ |
H A D | Expandable.kt | 205 .localBoundingBoxOf(coords, clipBounds = false)
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | SurfaceView.java | 572 public void setClipBounds(Rect clipBounds) { in setClipBounds() argument 573 super.setClipBounds(clipBounds); in setClipBounds()
|
H A D | View.java | 23381 public void setClipBounds(Rect clipBounds) { in setClipBounds() argument 23382 if (clipBounds == mClipBounds in setClipBounds() 23383 || (clipBounds != null && clipBounds.equals(mClipBounds))) { in setClipBounds() 23386 if (clipBounds != null) { in setClipBounds() 23388 mClipBounds = new Rect(clipBounds); in setClipBounds() 23390 mClipBounds.set(clipBounds); in setClipBounds()
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |