Home | History | Annotate | Download | only in sgv

Lines Matching refs:nextColumn

2145             int nextColumn = getNextColumnDown();
2151 if (nextColumn + 1 < rec.span) {
2152 nextColumn = mColCount - 1;
2155 if (mColCount - nextColumn < rec.span) {
2156 nextColumn = 0;
2160 rec.column = nextColumn;
2168 int lowest = mItemBottoms[nextColumn] + mItemMargin;
2171 final int index = mIsRtlLayout ? nextColumn - spanIndex :
2172 nextColumn + spanIndex;
2181 final int col = mIsRtlLayout ? nextColumn - spanIndex : nextColumn + spanIndex;