Lines Matching refs:mItemCount

1235         if (childCount != mItemCount) return false;
1461 mFastScroll.onScroll(mFirstPosition, getChildCount(), mItemCount);
1464 mOnScrollListener.onScroll(this, mFirstPosition, getChildCount(), mItemCount);
1798 boolean haveChildren = getChildCount() > 0 && mItemCount > 0;
1814 // which case mItemCount may not be 0, but if we try to
1822 if (firstPos >= mItemCount) {
1823 firstPos = mItemCount - 1;
1968 mOldItemCount = mItemCount;
1969 mItemCount = mAdapter.getCount();
2042 (int)((float)mScrollY / getHeight() * mItemCount * 100), 0);
2046 final int count = mItemCount;
2064 result = Math.max(mItemCount * 100, 0);
2067 result += Math.abs((int) ((float) mScrollY / getHeight() * mItemCount * 100));
2070 result = mItemCount;
2099 if (mFirstPosition + count - 1 < mItemCount - 1) {
2158 mFastScroll.onItemCountChanged(getChildCount(), mItemCount);
2238 canScrollDown = (mFirstPosition + count) < mItemCount;
2252 if (mItemCount > 0 && mSelectedPosition >= 0) {
2860 mOldItemCount = mItemCount;
2861 mItemCount = mAdapter.getCount();
3046 if (adapter != null && mItemCount > 0 &&
3887 mFirstPosition + childCount < mItemCount &&
3905 (mFirstPosition + childCount == mItemCount &&
4497 if (mItemCount == 0 || getChildCount() == 0) {
4724 if (distance == 0 || mItemCount == 0 || childCount == 0 ||
4726 (lastPos == mItemCount &&
4835 return lastPosition < mItemCount || lastBottom > getHeight() - listPadding.bottom;
4897 if (firstPosition + childCount == mItemCount) {
4905 final boolean cannotScrollUp = (firstPosition + childCount == mItemCount &&
4920 final int footerViewsStart = mItemCount - getFooterViewsCount();
5070 position = Math.min(position, mItemCount - 1);
5187 final int itemCount = mItemCount;
5247 final int end = Math.min(lastPos + CHECK_POSITION_SEARCH_DISTANCE, mItemCount);
5281 int count = mItemCount;
5283 mLastHandledItemCount = mItemCount;
7181 final int extraScroll = lastPos < mItemCount - 1 ?
7199 || firstPos + childCount >= mItemCount) {