Home
last modified time | relevance | path

Searched refs:mMaxScrap (Results 1 – 2 of 2) sorted by relevance

/frameworks/ex/widget/java/com/android/ex/widget/
DStaggeredGridView.java1463 private int mMaxScrap; field in StaggeredGridView.RecycleBin
1511 if (childCount > mMaxScrap) { in addScrap()
1512 mMaxScrap = childCount; in addScrap()
1516 if (scrap.size() < mMaxScrap) { in addScrap()
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DRecyclerView.java4621 private SparseIntArray mMaxScrap = new SparseIntArray(); field in RecyclerView.RecycledViewPool
4631 mMaxScrap.put(viewType, max); in setMaxRecycledViews()
4665 if (mMaxScrap.get(viewType) <= scrapHeap.size()) { in putRecycledView()
4713 if (mMaxScrap.indexOfKey(viewType) < 0) { in getScrapHeapForType()
4714 mMaxScrap.put(viewType, DEFAULT_MAX_SCRAP); in getScrapHeapForType()