Searched defs:mTmpPos (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSwipeHelper.java90 final private int[] mTmpPos = new int[2]; field in class:SwipeHelper
293 mCurrView.getLocationOnScreen(mTmpPos);
294 final int x = (int) ev.getRawX() - mTmpPos[0];
295 final int y = (int) ev.getRawY() - mTmpPos[1];
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowContainer.java118 private final Point mTmpPos = new Point(); field in class:WindowContainer
1238 getRelativePosition(mTmpPos);
1239 if (mTmpPos.equals(mLastSurfacePosition)) {
1243 getPendingTransaction().setPosition(mSurfaceControl, mTmpPos.x, mTmpPos.y);
1244 mLastSurfacePosition.set(mTmpPos.x, mTmpPos.y);
H A DWindowStateAnimator.java239 private final Point mTmpPos = new Point(); field in class:WindowStateAnimator
1037 mTmpPos.x = 0;
1038 mTmpPos.y = 0;
1040 stack.getRelativePosition(mTmpPos);
1043 xOffset = -mTmpPos.x;
1044 yOffset = -mTmpPos.y;
1049 clipRect.right += mTmpPos.x;
1050 clipRect.bottom += mTmpPos.y;

Completed in 378 milliseconds