Home
last modified time | relevance | path

Searched refs:insertIndex (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/core/java/android/app/usage/
H A DEventList.java77 final int insertIndex = firstIndexOnOrAfter(event.mTimeStamp + 1); in insert() local
78 mEvents.add(insertIndex, event); in insert()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/
H A DTemporaryViewDisplayController.kt192 var insertIndex = 0 regex
193 while (insertIndex < activeViews.size &&
194 activeViews[insertIndex].info.priority > newInfo.priority) {
195 insertIndex++
197 activeViews.add(insertIndex, newDisplayInfo)
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskDisplayArea.java1709 final int insertIndex = rootTaskIndex <= behindRootTaskIndex
1711 final int position = Math.max(0, insertIndex);
/aosp14/frameworks/base/core/java/android/view/
H A DViewGroup.java4474 int insertIndex = i; in buildOrderedChildList() local
4475 while (insertIndex > 0 && mPreSortedChildren.get(insertIndex - 1).getZ() > currentZ) { in buildOrderedChildList()
4476 insertIndex--; in buildOrderedChildList()
4478 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()
/aosp14/frameworks/base/core/java/android/widget/
H A DRemoteViews.java2793 final int insertIndex = mIndex >= 0 ? mIndex : nextChild; in insertNewView() local
2794 target.addChild(tree, insertIndex); in insertNewView()
2804 targetVg.addView(task.mResult, insertIndex); in insertNewView()