Home
last modified time | relevance | path

Searched refs:boundsRect (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityViewTransition.kt48 val boundsRect = Rect() in <lambda>() constant
49 boundsRect.left = values.view.left in <lambda>()
50 boundsRect.top = values.view.top in <lambda>()
51 boundsRect.right = values.view.right in <lambda>()
52 boundsRect.bottom = values.view.bottom in <lambda>()
53 values.values[PROP_BOUNDS] = boundsRect in <lambda>()
DPinShapeNonHintingView.java179 Rect boundsRect = new Rect(); in captureValues() local
180 boundsRect.left = values.view.getLeft(); in captureValues()
181 boundsRect.top = values.view.getTop(); in captureValues()
182 boundsRect.right = values.view.getRight(); in captureValues()
183 boundsRect.bottom = values.view.getBottom(); in captureValues()
184 values.values.put(PROP_BOUNDS, boundsRect); in captureValues()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/
DTransitionLayout.kt45 private val boundsRect = Rect() constant
228 canvas.clipRect(boundsRect) in dispatchDraw()
238 boundsRect.set(0, 0, width.toInt(), height.toInt()) in updateBounds()
/frameworks/native/libs/renderengine/skia/
DSkiaRenderEngine.cpp177 static inline std::pair<SkRRect, SkRRect> getBoundsAndClip(const android::FloatRect& boundsRect, in getBoundsAndClip() argument
180 const SkRect bounds = getSkRect(boundsRect); in getBoundsAndClip()