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.java279 static boolean findNextAvailableIconSpaceInScreen(ArrayList<ItemInfo> items, int[] xy, argument
305 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
H A DWorkspace.java3393 * Convert the 2D coordinate xy from the parent View's coordinate space to this CellLayout's
3394 * coordinate space. The argument xy is modified with the return result.
3401 void mapPointFromSelfToChild(View v, float[] xy, Matrix cachedInverseMatrix) { argument
3402 xy[0] = xy[0] - v.getLeft();
3403 xy[1] = xy[1] - v.getTop();
3423 void mapPointFromSelfToHotseatLayout(Hotseat hotseat, float[] xy) { argument
3424 mTempPt[0] = (int) xy[0];
3425 mTempPt[1] = (int) xy[
3439 mapPointFromChildToSelf(View v, float[] xy) argument
[all...]

Completed in 121 milliseconds