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

  /packages/apps/Launcher2/src/com/android/launcher2/
CellLayout.java 200 final int xCount = portrait ? mShortAxisCells : mLongAxisCells;
204 findOccupiedCells(xCount, yCount, occupied, null);
211 cellInfo.valid = cellXY[0] >= 0 && cellXY[1] >= 0 && cellXY[0] < xCount &&
241 final int xCount = portrait ? mShortAxisCells : mLongAxisCells;
245 findOccupiedCells(xCount, yCount, occupied, null);
247 findIntersectingVacantCells(info, info.cellX, info.cellY, xCount, yCount, occupied);
255 int xCount, int yCount, boolean[][] occupied) {
269 findVacantCell(cellInfo.current, xCount, yCount, occupied, cellInfo);
272 private static void findVacantCell(Rect current, int xCount, int yCount, boolean[][] occupied,
280 findVacantCell(current, xCount, yCount, occupied, cellInfo)
    [all...]
InstallShortcutReceiver.java 87 final int xCount = Launcher.NUMBER_CELLS_X;
90 boolean[][] occupied = new boolean[xCount][yCount];
111 for (int x = cellX; x < cellX + spanX && x < xCount; x++) {
123 return CellLayout.findVacantCell(xy, 1, 1, xCount, yCount, occupied);
  /external/skia/src/utils/
SkNinePatch.cpp 35 static int fillIndices(uint16_t indices[], int xCount, int yCount) {
40 for (int x = 0; x < xCount; x++) {
42 *indices++ = n + xCount + 2;
46 *indices++ = n + xCount + 1;
47 *indices++ = n + xCount + 2;
  /external/skia/src/core/
SkPicturePlayback.cpp 624 size_t xCount = getInt();
626 const SkScalar* xpos = (const SkScalar*)fReader.skip(xCount * sizeof(SkScalar));
633 size_t xCount = getInt();
634 const SkScalar* xpos = (const SkScalar*)fReader.skip((3 + xCount) * sizeof(SkScalar));
    [all...]

Completed in 175 milliseconds