Searched defs:xy (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DInstallShortcutReceiver.java336 private static boolean findEmptyCell(Context context, ArrayList<ItemInfo> items, int[] xy, argument
361 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
H A DWorkspace.java2562 * Convert the 2D coordinate xy from the parent View's coordinate space to this CellLayout's
2563 * coordinate space. The argument xy is modified with the return result.
2566 void mapPointFromSelfToChild(View v, float[] xy) { argument
2567 mapPointFromSelfToChild(v, xy, null);
2572 * Convert the 2D coordinate xy from the parent View's coordinate space to this CellLayout's
2573 * coordinate space. The argument xy is modified with the return result.
2580 void mapPointFromSelfToChild(View v, float[] xy, Matrix cachedInverseMatrix) { argument
2589 xy[0] = xy[0] + scrollX - v.getLeft();
2590 xy[
2595 mapPointFromSelfToHotseatLayout(Hotseat hotseat, float[] xy) argument
2608 mapPointFromChildToSelf(View v, float[] xy) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherModel.java407 int[] xy, int spanX, int spanY) {
424 return Utilities.findVacantCell(xy, spanX, spanY, xCount, yCount, occupied);
406 findNextAvailableIconSpaceInScreen(ArrayList<ItemInfo> occupiedPos, int[] xy, int spanX, int spanY) argument
H A DWorkspace.java3018 * Convert the 2D coordinate xy from the parent View's coordinate space to this CellLayout's
3019 * coordinate space. The argument xy is modified with the return result.
3026 void mapPointFromSelfToChild(View v, float[] xy, Matrix cachedInverseMatrix) { argument
3027 xy[0] = xy[0] - v.getLeft();
3028 xy[1] = xy[1] - v.getTop();
3047 void mapPointFromSelfToHotseatLayout(Hotseat hotseat, float[] xy) { argument
3048 mTempPt[0] = (int) xy[0];
3049 mTempPt[1] = (int) xy[
3063 mapPointFromChildToSelf(View v, float[] xy) argument
[all...]

Completed in 103 milliseconds