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

  /cts/apps/CtsVerifier/lib/colorchecker/
colorcheckertest.cpp 678 int rowEnd = 0;
697 rowEnd = rowStart;
701 while ((isRowEnd) && (rowEnd < numHorizontalLines)) {
704 if (mCandidateColors[rowEnd][j] != NULL) {
709 ++rowEnd;
713 rowEnd--;
715 if ((isRowEnd) && (rowEnd == numHorizontalLines)) {
716 rowEnd--;
719 ALOGV("rowEnd is %d", rowEnd);
    [all...]
  /frameworks/base/core/java/android/widget/
GridView.java 426 int rowEnd = -1;
433 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
434 rowStart = Math.max(0, rowEnd - numColumns + 1);
440 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true);
457 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
679 int rowEnd = -1;
686 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
687 rowStart = Math.max(0, rowEnd - numColumns + 1);
697 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true);
710 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing)
    [all...]

Completed in 263 milliseconds