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

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java83 int mItemCount = UNDEFINED; field in class:AccessibilityRecord
318 return mItemCount;
330 mItemCount = itemCount;
770 mItemCount = record.mItemCount;
796 mItemCount = UNDEFINED;
821 builder.append("; ItemCount: " + mItemCount);
/frameworks/base/core/java/android/widget/
H A DAdapterView.java179 int mItemCount; field in class:AdapterView
581 return mItemCount;
800 mOldItemCount = mItemCount;
801 mItemCount = getAdapter().getCount();
806 && mOldItemCount == 0 && mItemCount > 0) {
827 mOldItemCount = mItemCount;
828 mItemCount = 0;
972 return super.canAnimate() && mItemCount > 0;
976 final int count = mItemCount;
1058 int count = mItemCount;
[all...]
H A DFastScroller.java98 private int mItemCount = -1; field in class:FastScroller
443 if (mItemCount != totalItemCount && visibleItemCount > 0) {
444 mItemCount = totalItemCount;
445 mLongList = mItemCount / visibleItemCount >= MIN_PAGES;
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java112 private int mItemCount; field in class:StaggeredGridView
432 if (mFirstPosition != 0 || getChildCount() != mItemCount) {
1006 while (nextCol >= 0 && mItemBottoms[nextCol] < fillTo && position < mItemCount) {
1278 mOldItemCount = mItemCount = adapter != null ? adapter.getCount() : 0;
1550 mOldItemCount = mItemCount;
1551 mItemCount = mAdapter.getCount();

Completed in 507 milliseconds