HomeSort by relevance Sort by last modified time
    Searched refs:mTmpPoint (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/view/
Display.java 139 synchronized (mTmpPoint) {
140 getSizeInternal(mTmpPoint, true);
141 outSize.set(0, 0, mTmpPoint.x, mTmpPoint.y);
208 synchronized (mTmpPoint) {
211 getSizeInternal(mTmpPoint, true);
214 return mTmpPoint.x;
223 synchronized (mTmpPoint) {
226 getSizeInternal(mTmpPoint, true);
229 return mTmpPoint.y
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 116 private int mTmpPoint[] = new int[2];
397 mTmpPoint[0] = (int) Math.max(mDragLayerRect.left, Math.min(x, mDragLayerRect.right - 1));
398 mTmpPoint[1] = (int) Math.max(mDragLayerRect.top, Math.min(y, mDragLayerRect.bottom - 1));
399 return mTmpPoint;
CellLayout.java 81 private final int[] mTmpPoint = new int[2];
839 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
840 float distance = (float) Math.sqrt( Math.pow(x - mTmpPoint[0], 2) +
841 Math.pow(y - mTmpPoint[1], 2));
    [all...]

Completed in 59 milliseconds