Home | History | Annotate | Download | only in list

Lines Matching refs:mColumnCount

60     protected int mColumnCount;
110 mColumnCount = (displayType == DisplayType.FREQUENT_ONLY ? 1 : numCols);
128 mColumnCount = columnCount;
315 return entryCount == 0 ? 0 : ((entryCount - 1) / mColumnCount) + 1;
319 return mColumnCount;
328 ArrayList<ContactEntry> resultList = new ArrayList<ContactEntry>(mColumnCount);
329 int contactIndex = position * mColumnCount;
336 for (int columnCounter = 0; columnCounter < mColumnCount; columnCounter++) {
343 for (int columnCounter = 0; columnCounter < mColumnCount &&
492 int columnCount = mItemViewType == ViewTypes.FREQUENT ? 1 : mColumnCount;
606 final int totalWhitespaceInPixels = (mColumnCount - 1) * mPaddingInPixels
611 final int imageSize = (width - totalWhitespaceInPixels) / mColumnCount;
612 final int remainder = width - (imageSize * mColumnCount) - totalWhitespaceInPixels;