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

  /external/skia/legacy/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++) {
  /external/skia/src/core/
SkEdgeClipper.cpp 209 int countX = SkChopQuadAtXExtrema(&monoY[y * 2], monoX);
210 for (int x = 0; x <= countX; x++) {
420 int countX = SkChopCubicAtXExtrema(&monoY[y * 3], monoX);
421 for (int x = 0; x <= countX; x++) {
  /packages/apps/Launcher2/src/com/android/launcher2/
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 241 int countX = mCellLayout.getCountX();
275 hSpanInc = Math.min(countX - (cellX + spanX), hSpanInc);
Folder.java 344 final int countX = mContent.getCountX();
346 int x = i % countX;
347 int y = i / countX;
766 int countX = mContent.getCountX();
771 int oldCountX = countX;
773 if (countX * countY < count) {
775 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) {
776 countX++;
781 } else if ((countY - 1) * countX >= count && countY >= countX)
    [all...]
CellLayout.java     [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncodeDecodeTest.java     [all...]

Completed in 291 milliseconds