HomeSort by relevance Sort by last modified time
    Searched defs:mItemCount (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/view/accessibility/
AccessibilityRecord.java 83 int mItemCount = UNDEFINED;
318 return mItemCount;
330 mItemCount = itemCount;
770 mItemCount = record.mItemCount;
796 mItemCount = UNDEFINED;
821 builder.append("; ItemCount: " + mItemCount);
  /frameworks/base/core/java/android/widget/
AdapterView.java 178 int mItemCount;
582 return mItemCount;
801 mOldItemCount = mItemCount;
802 mItemCount = getAdapter().getCount();
807 && mOldItemCount == 0 && mItemCount > 0) {
828 mOldItemCount = mItemCount;
829 mItemCount = 0;
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AdapterViewICS.java 180 int mItemCount;
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;
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java 167 private int mItemCount;
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 63 private int mItemCount;
241 remaining > 0 && startPosition + i >= 0 && startPosition + i < mItemCount;
489 if (childCount != mItemCount) return false;
511 while (nextLeft < end && pos < mItemCount) {
652 mOldItemCount = mItemCount = adapter != null ? adapter.getCount() : 0;
864 mOldItemCount = mItemCount;
865 mItemCount = mAdapter.getCount();
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 112 private int mItemCount;
432 if (mFirstPosition != 0 || getChildCount() != mItemCount) {
    [all...]

Completed in 77 milliseconds