Searched refs:mAttachedScrap (Results 1 – 2 of 2) sorted by relevance
3436 final ArrayList<ViewHolder> mAttachedScrap = new ArrayList<ViewHolder>(); field in RecyclerView.Recycler3442 mUnmodifiableAttachedScrap = Collections.unmodifiableList(mAttachedScrap);3457 mAttachedScrap.clear(); in clear()3935 mAttachedScrap.add(holder); in scrapView()3952 mAttachedScrap.remove(holder); in unscrapView()3961 return mAttachedScrap.size(); in getScrapCount()3965 return mAttachedScrap.get(index).itemView; in getScrapViewAt()3969 mAttachedScrap.clear(); in clearScrap()4013 final int scrapCount = mAttachedScrap.size(); in getScrapViewForPosition()4017 final ViewHolder holder = mAttachedScrap.get(i); in getScrapViewForPosition()[all …]
1055 for (RecyclerView.ViewHolder vh : recycler.mAttachedScrap) { in assertNoPreLayoutPosition()