Home
last modified time | relevance | path

Searched refs:tempRectF (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/
DCrossActivityBackAnimation.kt77 private val tempRectF = RectF() in <lambda>() constant
339 tempRectF.set(rect) in <lambda>()
346 tempRectF.scaleCentered(lastPostCommitFlingScale) in <lambda>()
348 val scale = tempRectF.width() / backAnimRect.width() in <lambda>()
357 matrix.postTranslate(tempRectF.left, tempRectF.top) in <lambda>()
/frameworks/base/core/java/com/android/internal/widget/
DRecyclerView.java8836 final RectF tempRectF = mRecyclerView.mTempRectF; in getTransformedBoundingBox() local
8837 tempRectF.set(out); in getTransformedBoundingBox()
8838 childMatrix.mapRect(tempRectF); in getTransformedBoundingBox()
8840 (int) Math.floor(tempRectF.left), in getTransformedBoundingBox()
8841 (int) Math.floor(tempRectF.top), in getTransformedBoundingBox()
8842 (int) Math.ceil(tempRectF.right), in getTransformedBoundingBox()
8843 (int) Math.ceil(tempRectF.bottom) in getTransformedBoundingBox()