Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/widget/
H A DRemoteViews.java2307 if (nextChild < 0 || nextChild >= numChildren) { in setNextRecyclableChild()
2318 if (nextChild >= 0 && nextChild < root.getChildCount()) { in finalizeViewRecycling()
2319 root.removeViews(nextChild, root.getChildCount() - nextChild); in finalizeViewRecycling()
2380 nextChild++) { in findViewIndexToRecycle()
2413 target.removeViews(nextChild, recycledViewIndex - nextChild); in apply()
2422 target.removeViews(nextChild, recycledViewIndex - nextChild + 1); in apply()
2434 if (nextChild >= 0) { in apply()
2471 target.removeChildren(nextChild, recycledViewIndex - nextChild); in initActionAsync()
2490 targetVg.removeViews(nextChild, recycledViewIndex - nextChild); in initActionAsync()
2497 target.removeChildren(nextChild, recycledViewIndex - nextChild + 1); in initActionAsync()
[all …]
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
H A DBrowseTree.java529 BrowseNode nextChild = getEldestChild(mCurrentBrowseNode, target); in getNextStepToFolder() local
530 if (nextChild == null) { in getNextStepToFolder()
533 return nextChild; in getNextStepToFolder()
/aosp12/packages/apps/Settings/src/com/android/settings/
H A DMainClear.java446 View nextChild = vGroup.getChildAt(i); in getContentDescription() local
447 getContentDescription(nextChild, description); in getContentDescription()
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java712 final View nextChild = getChildAt(i);
713 if (nextChild.getVisibility() == GONE) {
716 clipEdge = Math.min(clipEdge, nextChild.getTop());
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DScrollAdapterView.java925 View nextChild = getChildAt(firstIndex + mItemsOnOffAxis);
926 if (nextChild == null) {
/aosp12/frameworks/base/core/java/android/view/
H A DViewGroup.java4439 final View nextChild = mChildren[childIndex]; in buildOrderedChildList() local
4440 final float currentZ = nextChild.getZ(); in buildOrderedChildList()
4447 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()