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

  /packages/apps/Launcher2/src/com/android/launcher2/
Folder.java 343 final int countX = mContent.getCountX();
345 int x = i % countX;
346 int y = i / countX;
770 int countX = mContent.getCountX();
775 int oldCountX = countX;
777 if (countX * countY < count) {
779 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) {
780 countX++;
785 } else if ((countY - 1) * countX >= count && countY >= countX)
    [all...]
FocusHelper.java 282 int countX;
287 countX = ((PagedViewCellLayout) parentLayout).getCellCountX();
291 countX = ((PagedViewGridLayout) parentLayout).getCellCountX();
305 final int x = iconIndex % countX;
306 final int y = iconIndex / countX;
356 int newiconIndex = ((y - 1) * countX) + x;
368 int newiconIndex = Math.min(itemCount - 1, ((y + 1) * countX) + x);
    [all...]
AppWidgetResizeFrame.java 238 int countX = mCellLayout.getCountX();
272 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
CellLayout.java     [all...]
  /external/skia/src/core/
SkEdgeClipper.cpp 201 int countX = SkChopQuadAtXExtrema(&monoY[y * 2], monoX);
202 for (int x = 0; x <= countX; x++) {
408 int countX = SkChopCubicAtXExtrema(&monoY[y * 3], monoX);
409 for (int x = 0; x <= countX; x++) {

Completed in 216 milliseconds