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

  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 169 GIFRow::const_iterator rowEnd = rowBegin + (xEnd - xBegin);
185 for (; rowBegin != rowEnd; ++rowBegin, ++currentAddress) {
195 for (; rowBegin != rowEnd; ++rowBegin, ++currentAddress) {
  /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...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
InfoBarLayout.java 291 final int rowEnd = mIndicesOfRows.get(1);
292 final int rowHeight = computeMainRowHeight(rowStart, rowEnd);
311 for (int i = rowStart; i < rowEnd; i++) {
338 for (int i = rowEnd - 1; i >= rowStart; i--) {
381 final int rowEnd = mIndicesOfRows.get(row + 1);
387 for (int i = rowStart; i < rowEnd; i++) {
404 return rowTop + computeRowHeight(rowStart, rowEnd);
632 final int rowEnd = mIndicesOfRows.get(row + 1);
635 cumulativeHeight += computeMainRowHeight(rowStart, rowEnd);
637 cumulativeHeight += computeRowHeight(rowStart, rowEnd);
    [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...]
  /frameworks/base/core/java/android/widget/
GridView.java 440 int rowEnd = -1;
447 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
448 rowStart = Math.max(0, rowEnd - numColumns + 1);
454 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true);
471 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing);
693 int rowEnd = -1;
700 rowEnd = mItemCount - 1 - (invertedSelection - (invertedSelection % numColumns));
701 rowStart = Math.max(0, rowEnd - numColumns + 1);
711 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true);
724 fillDown(rowEnd + numColumns, referenceView.getBottom() + verticalSpacing)
    [all...]

Completed in 759 milliseconds