Searched refs:nextChild (Results 1 – 3 of 3) sorted by relevance
2351 private static void setNextRecyclableChild(ViewGroup vg, int nextChild, int numChildren) { in setNextRecyclableChild() argument2352 if (nextChild < 0 || nextChild >= numChildren) { in setNextRecyclableChild()2355 vg.setTagInternal(com.android.internal.R.id.remote_views_next_child, nextChild); in setNextRecyclableChild()2362 int nextChild = getNextRecyclableChild(root); in finalizeViewRecycling() local2363 if (nextChild >= 0 && nextChild < root.getChildCount()) { in finalizeViewRecycling()2364 root.removeViews(nextChild, root.getChildCount() - nextChild); in finalizeViewRecycling()2424 for (int nextChild = getNextRecyclableChild(target); nextChild < target.getChildCount(); in findViewIndexToRecycle()2425 nextChild++) { in findViewIndexToRecycle()2426 View child = target.getChildAt(nextChild); in findViewIndexToRecycle()2428 return nextChild; in findViewIndexToRecycle()[all …]
753 final View nextChild = getChildAt(i);754 if (nextChild.getVisibility() == GONE) {757 clipEdge = Math.min(clipEdge, nextChild.getTop());
4440 final View nextChild = mChildren[childIndex]; in buildOrderedChildList() local4441 final float currentZ = nextChild.getZ(); in buildOrderedChildList()4448 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()