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

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DGridLayoutManagerTest.java65 return setupBasic(config, new GridTestAdapter(config.mItemCount));
273 state.mItemCount = 1000;
464 config.mItemCount = 150;
632 int mItemCount = 1000; field in class:GridLayoutManagerTest.Config
637 mItemCount = itemCount;
656 ", mItemCount=" + mItemCount +
H A DLinearLayoutManagerTest.java95 mTestAdapter = config.mTestAdapter == null ? new TestAdapter(config.mItemCount)
136 for(Config config : addConfigVariation(mBaseVariations, "mItemCount", 5
621 return config.mItemCount == 0;
655 return config.mItemCount == 0;
711 List<Config> variations = addConfigVariation(mBaseVariations, "mItemCount", 0, 300);
1105 int mItemCount = DEFAULT_ITEM_COUNT; field in class:LinearLayoutManagerTest.Config
1145 mItemCount = itemCount;
1162 ", mItemCount=" + mItemCount +
H A DStaggeredGridLayoutManagerTest.java80 mAdapter = new GridTestAdapter(config.mItemCount, config.mOrientation);
687 if (config.mItemCount < 100) {
696 smoothScrollToPosition(config.mItemCount / 2);
984 clone.mItemCount = clone.mSpanCount - 1;
1914 int mItemCount = DEFAULT_ITEM_COUNT; field in class:StaggeredGridLayoutManagerTest.Config
1948 mItemCount = itemCount;
1958 " itemCount:" + mItemCount +
/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
591 return mItemCount;
810 mOldItemCount = mItemCount;
811 mItemCount = getAdapter().getCount();
816 && mOldItemCount == 0 && mItemCount > 0) {
837 mOldItemCount = mItemCount;
838 mItemCount = 0;
994 return super.canAnimate() && mItemCount > 0;
998 final int count = mItemCount;
1089 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 DAdapterViewCompat.java182 int mItemCount; field in class:AdapterViewCompat
593 return mItemCount;
805 mOldItemCount = mItemCount;
806 mItemCount = getAdapter().getCount();
811 && mOldItemCount == 0 && mItemCount > 0) {
832 mOldItemCount = mItemCount;
833 mItemCount = 0;
918 return super.canAnimate() && mItemCount > 0;
922 final int count = mItemCount;
1001 int count = mItemCount;
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1843 mState.mItemCount = mAdapter.getItemCount();
1845 mState.mItemCount = 0;
2030 mState.mItemCount = mAdapter.getItemCount();
2113 mState.mItemCount = mAdapter.getItemCount();
2217 mState.mPreviousLayoutItemCount = mState.mItemCount;
8010 int mItemCount = 0; field in class:RecyclerView.State
8036 mItemCount = 0;
8164 mItemCount;
8196 ", mItemCount=" + mItemCount
[all...]

Completed in 233 milliseconds