Home | History | Annotate | Download | only in launcher2

Lines Matching refs:mTmpPoint

83     private final int[] mTmpPoint = new int[2];
845 cellToCenterPoint(cell[0], cell[1], mTmpPoint);
846 float distance = (float) Math.sqrt( Math.pow(x - mTmpPoint[0], 2) +
847 Math.pow(y - mTmpPoint[1], 2));
1178 final int[] topLeft = mTmpPoint;
1492 int[] curDirection = mTmpPoint;
2026 regionToCenterPoint(cellX0, cellY0, spanX, spanY, mTmpPoint);
2027 final int x0 = mTmpPoint[0];
2028 final int y0 = mTmpPoint[1];
2029 regionToCenterPoint(cellX1, cellY1, spanX, spanY, mTmpPoint);
2030 final int x1 = mTmpPoint[0];
2031 final int y1 = mTmpPoint[1];