Home
last modified time | relevance | path

Searched refs:mTmpMatrix (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/utils/
DDisplayRotationUtil.java37 private final Matrix mTmpMatrix = new Matrix(); field in DisplayRotationUtil
82 mTmpMatrix); in getRotatedBounds()
89 mTmpMatrix.mapRect(rectF); in getRotatedBounds()
/frameworks/base/core/java/android/view/
DInsetsAnimationControlImpl.java72 private final Matrix mTmpMatrix = new Matrix(); field in InsetsAnimationControlImpl
341 mTmpMatrix.setTranslate(control.getSurfacePosition().x, control.getSurfacePosition().y); in updateLeashesForSide()
343 addTranslationToMatrix(side, offset, mTmpMatrix, mTmpFrame); in updateLeashesForSide()
356 .withMatrix(mTmpMatrix) in updateLeashesForSide()
DSurfaceView.java230 private final Matrix mTmpMatrix = new Matrix(); field in SurfaceView
1800 mTmpMatrix.reset(); in updateScreenMatrixForEmbeddedHierarchy()
1801 mTmpMatrix.setTranslate(mTmpRect.left, mTmpRect.top); in updateScreenMatrixForEmbeddedHierarchy()
1802 mTmpMatrix.postScale(mScreenRect.width() / (float) mSurfaceWidth, in updateScreenMatrixForEmbeddedHierarchy()
1806 if (mTmpMatrix.isIdentity() || mTmpMatrix.equals(mScreenMatrixForEmbeddedHierarchy)) { in updateScreenMatrixForEmbeddedHierarchy()
1816 mTmpMatrix.getValues(mMatrixValues); in updateScreenMatrixForEmbeddedHierarchy()
1818 mScreenMatrixForEmbeddedHierarchy.set(mTmpMatrix); in updateScreenMatrixForEmbeddedHierarchy()
DView.java24702 final Matrix m = info.mTmpMatrix; in toGlobalMotionEvent()
24724 final Matrix m = info.mTmpMatrix; in toLocalMotionEvent()
29088 final Matrix mTmpMatrix = new Matrix(); field in View.AttachInfo
DViewGroup.java6077 transformMatrix = attachInfo.mTmpMatrix; in invalidateChild()
/frameworks/base/core/java/android/app/assist/
DAssistStructure.java198 final float[] mTmpMatrix = new float[9]; field in AssistStructure.ParcelTransferWriter
277 int flags = child.writeSelfToParcel(out, pwriter, mSanitizeOnWrite, mTmpMatrix); in writeView()
329 win.writeSelfToParcel(out, pwriter, mTmpMatrix); in writeNextEntryToParcel()
343 final float[] mTmpMatrix = new float[9]; field in AssistStructure.ParcelTransferReader
816 in.readFloatArray(reader.mTmpMatrix); in ViewNode()
817 mMatrix.setValues(reader.mTmpMatrix); in ViewNode()
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DDividerView.java166 private final Matrix mTmpMatrix = new Matrix(); field in DividerView
259 mTmpMatrix.setTranslate(0, mDividerPositionY - mDividerInsets);
261 mTmpMatrix.setTranslate(mDividerPositionX - mDividerInsets, 0);
263 mTmpMatrix.getValues(mTmpValues);
/frameworks/base/services/core/java/com/android/server/wm/
DWindowStateAnimator.java689 final Matrix tmpMatrix = mWin.mTmpMatrix; in computeShownFrameLocked()
1280 Matrix matrix = mWin.mTmpMatrix; in setWallpaperPositionAndScale()
DDisplayContent.java433 private final Matrix mTmpMatrix = new Matrix(); field in DisplayContent
2824 deltaRotation, parentBounds.width(), parentBounds.height(), mTmpMatrix); in rotateBounds()
2827 mTmpMatrix.mapRect(mTmpRectF); in rotateBounds()
4019 createRotationMatrix(rotationDelta, mBaseDisplayWidth, mBaseDisplayHeight, mTmpMatrix); in getBounds()
4021 mTmpMatrix.mapRect(mTmpRectF); in getBounds()
DWindowState.java432 final Matrix mTmpMatrix = new Matrix(); field in WindowState