HomeSort by relevance Sort by last modified time
    Searched defs:rowEnd (Results 1 - 3 of 3) 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 436 int rowEnd = -1;
443 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
444 rowStart = Math.max(0, rowEnd - numColumns + 1);
450 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true);
467 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
689 int rowEnd = -1;
696 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
697 rowStart = Math.max(0, rowEnd - numColumns + 1);
707 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true);
720 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 646 int rowEnd = maxField.getInt(rowInterval);
652 view.rowSpan = rowEnd - row;
    [all...]

Completed in 6592 milliseconds