Searched refs:tmpMatrix (Results 1 – 4 of 4) sorted by relevance
/aosp14/frameworks/base/core/java/android/app/assist/ |
H A D | AssistStructure.java | 553 void writeSelfToParcel(Parcel out, PooledStringWriter pwriter, float[] tmpMatrix) { in writeSelfToParcel() argument 781 @Nullable float[] tmpMatrix) { in initializeFromParcelWithoutChildren() argument 863 if (tmpMatrix == null) { in initializeFromParcelWithoutChildren() 864 tmpMatrix = new float[9]; in initializeFromParcelWithoutChildren() 866 in.readFloatArray(tmpMatrix); in initializeFromParcelWithoutChildren() 867 mMatrix.setValues(tmpMatrix); in initializeFromParcelWithoutChildren() 908 boolean sanitizeOnWrite, @Nullable float[] tmpMatrix, boolean willWriteChildren) { in writeSelfToParcel() argument 1098 if (tmpMatrix == null) { in writeSelfToParcel() 1099 tmpMatrix = new float[9]; in writeSelfToParcel() 1101 mMatrix.getValues(tmpMatrix); in writeSelfToParcel() [all …]
|
/aosp14/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | WindowState.java | 968 final Matrix tmpMatrix = new Matrix(); in getKeepClearAreas() local 970 getKeepClearAreas(outRestricted, outUnrestricted, tmpMatrix, tmpFloat9); in getKeepClearAreas() 985 Matrix tmpMatrix, float[] float9) { in getKeepClearAreas() argument 986 outRestricted.addAll(getRectsInScreenSpace(mKeepClearAreas, tmpMatrix, float9)); in getKeepClearAreas() 988 getRectsInScreenSpace(mUnrestrictedKeepClearAreas, tmpMatrix, float9)); in getKeepClearAreas() 994 List<Rect> getRectsInScreenSpace(List<Rect> rects, Matrix tmpMatrix, float[] float9) { in getRectsInScreenSpace() argument 995 getTransformationMatrix(float9, tmpMatrix); in getRectsInScreenSpace() 1002 tmpMatrix.mapRect(tmpRect); in getRectsInScreenSpace()
|
H A D | DisplayContent.java | 6006 final Matrix tmpMatrix = new Matrix(); in getKeepClearAreas() local 6019 w.getKeepClearAreas(outRestricted, outUnrestricted, tmpMatrix, tmpFloat9); in getKeepClearAreas()
|
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
H A D | AccessibilityManagerService.java | 569 final Matrix tmpMatrix = pair.first; in getWindowTransformationMatrixAndMagnificationSpec() local 572 tmpMatrix.postScale(spec.scale, spec.scale); in getWindowTransformationMatrixAndMagnificationSpec() 573 tmpMatrix.postTranslate(spec.offsetX, spec.offsetY); in getWindowTransformationMatrixAndMagnificationSpec() 575 tmpMatrix.getValues(outTransformationMatrix); in getWindowTransformationMatrixAndMagnificationSpec()
|