Searched defs:mItemCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DFastScroller.java66 private int mItemCount = -1; field in class:FastScroller
230 if (mItemCount != totalItemCount && visibleItemCount > 0) {
231 mItemCount = totalItemCount;
232 mLongList = mItemCount / visibleItemCount >= MIN_PAGES;
H A DAdapterView.java172 int mItemCount; field in class:AdapterView
565 return mItemCount;
777 mOldItemCount = mItemCount;
778 mItemCount = getAdapter().getCount();
783 && mOldItemCount == 0 && mItemCount > 0) {
804 mOldItemCount = mItemCount;
805 mItemCount = 0;
902 return super.canAnimate() && mItemCount > 0;
906 final int count = mItemCount;
985 int count = mItemCount;
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java232 private int mItemCount; field in class:AccessibilityEvent
353 return mItemCount;
362 mItemCount = itemCount;
616 mItemCount = 0;
661 mItemCount = parcel.readInt();
678 parcel.writeInt(mItemCount);
705 builder.append("; ItemCount: " + mItemCount);

Completed in 58 milliseconds