Searched refs:nextChild (Results 1 – 3 of 3) sorted by relevance
2780 private static void setNextRecyclableChild(ViewGroup vg, int nextChild, int numChildren) { in setNextRecyclableChild() argument2781 if (nextChild < 0 || nextChild >= numChildren) { in setNextRecyclableChild()2784 vg.setTagInternal(com.android.internal.R.id.remote_views_next_child, nextChild); in setNextRecyclableChild()2791 int nextChild = getNextRecyclableChild(root); in finalizeViewRecycling() local2792 if (nextChild >= 0 && nextChild < root.getChildCount()) { in finalizeViewRecycling()2793 root.removeViews(nextChild, root.getChildCount() - nextChild); in finalizeViewRecycling()2853 for (int nextChild = getNextRecyclableChild(target); nextChild < target.getChildCount(); in findViewIndexToRecycle()2854 nextChild++) { in findViewIndexToRecycle()2855 View child = target.getChildAt(nextChild); in findViewIndexToRecycle()2857 return nextChild; in findViewIndexToRecycle()[all …]
758 final View nextChild = getChildAt(i);759 if (nextChild.getVisibility() == GONE) {762 clipEdge = Math.min(clipEdge, nextChild.getTop());
4448 final View nextChild = mChildren[childIndex]; in buildOrderedChildList() local4449 final float currentZ = nextChild.getZ(); in buildOrderedChildList()4456 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()