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.java178 int mItemCount; field in class:AdapterView
582 return mItemCount;
801 mOldItemCount = mItemCount;
802 mItemCount = getAdapter().getCount();
807 && mOldItemCount == 0 && mItemCount > 0) {
828 mOldItemCount = mItemCount;
829 mItemCount = 0;
973 return super.canAnimate() && mItemCount > 0;
977 final int count = mItemCount;
1058 int count = mItemCount;
[all...]
/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();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAdapterViewICS.java180 int mItemCount; field in class:AdapterViewICS
591 return mItemCount;
803 mOldItemCount = mItemCount;
804 mItemCount = getAdapter().getCount();
809 && mOldItemCount == 0 && mItemCount > 0) {
830 mOldItemCount = mItemCount;
831 mItemCount = 0;
916 return super.canAnimate() && mItemCount > 0;
920 final int count = mItemCount;
999 int count = mItemCount;
[all...]

Completed in 428 milliseconds