Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DRemoteViews.java2351 private static void setNextRecyclableChild(ViewGroup vg, int nextChild, int numChildren) { in setNextRecyclableChild() argument
2352 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() local
2363 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 …]
/frameworks/base/core/java/com/android/internal/widget/
DResolverDrawerLayout.java753 final View nextChild = getChildAt(i);
754 if (nextChild.getVisibility() == GONE) {
757 clipEdge = Math.min(clipEdge, nextChild.getTop());
/frameworks/base/core/java/android/view/
DViewGroup.java4440 final View nextChild = mChildren[childIndex]; in buildOrderedChildList() local
4441 final float currentZ = nextChild.getZ(); in buildOrderedChildList()
4448 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()