Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DRemoteViews.java2780 private static void setNextRecyclableChild(ViewGroup vg, int nextChild, int numChildren) { in setNextRecyclableChild() argument
2781 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() local
2792 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 …]
/frameworks/base/core/java/com/android/internal/widget/
DResolverDrawerLayout.java758 final View nextChild = getChildAt(i);
759 if (nextChild.getVisibility() == GONE) {
762 clipEdge = Math.min(clipEdge, nextChild.getTop());
/frameworks/base/core/java/android/view/
DViewGroup.java4448 final View nextChild = mChildren[childIndex]; in buildOrderedChildList() local
4449 final float currentZ = nextChild.getZ(); in buildOrderedChildList()
4456 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()