Home
last modified time | relevance | path

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

/packages/apps/Camera2/src/com/android/camera/widget/
DFilmstripView.java682 Queue<View> recycledViewsForType = recycledViews.get(viewType); in recycleView() local
683 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() local
695 if (recycledViewsForType != null) { in getRecycledView()
696 view = recycledViewsForType.poll(); in getRecycledView()