Searched refs:recycledViewsForType (Results 1 – 1 of 1) sorted by relevance
682 Queue<View> recycledViewsForType = recycledViews.get(viewType); in recycleView() local683 if (recycledViewsForType == null) { in recycleView()684 recycledViewsForType = new ArrayDeque<View>(); in recycleView()685 recycledViews.put(viewType, recycledViewsForType); in recycleView()687 recycledViewsForType.offer(view); in recycleView()693 Queue<View> recycledViewsForType = recycledViews.get(viewType); in getRecycledView() local695 if (recycledViewsForType != null) { in getRecycledView()696 view = recycledViewsForType.poll(); in getRecycledView()