Searched defs:mTempPoint (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDelegateViewHelper.java30 private int[] mTempPoint = new int[2]; field in class:DelegateViewHelper
57 mSourceView.getLocationOnScreen(mTempPoint);
58 final float sourceX = mTempPoint[0];
59 final float sourceY = mTempPoint[1];
95 mDelegateView.getLocationOnScreen(mTempPoint);
96 final float delegateX = mTempPoint[0];
97 final float delegateY = mTempPoint[1];
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DCropView.java45 private float[] mTempPoint = new float[] { 0, 0 }; field in class:CropView
272 float[] point = mTempPoint;
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java66 private final Point mTempPoint = new Point(); field in class:AccessibilityInteractionController
674 attachInfo.mDisplay.getRealSize(mTempPoint);
675 final int displayWidth = mTempPoint.x;
676 final int displayHeight = mTempPoint.y;
/frameworks/base/services/java/com/android/server/wm/
H A DDisplayMagnifier.java252 private final Point mTempPoint = new Point(); field in class:DisplayMagnifier.MagnifiedViewport
294 mWindowManager.getDefaultDisplay().getRealSize(mTempPoint);
295 final int screenWidth = mTempPoint.x;
296 final int screenHeight = mTempPoint.y;
496 mWindowManager.getDefaultDisplay().getRealSize(mTempPoint);
498 mTempPoint.x, mTempPoint.y, PixelFormat.TRANSLUCENT, SurfaceControl.HIDDEN);
596 mWindowManager.getDefaultDisplay().getRealSize(mTempPoint);
597 mSurfaceControl.setSize(mTempPoint.x, mTempPoint
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java161 private final Point mTempPoint = new Point(); field in class:AccessibilityManagerService
725 mDefaultDisplay.getRealSize(mTempPoint);
726 outBounds.intersect(0, 0, mTempPoint.x, mTempPoint.y);

Completed in 399 milliseconds