Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/usage/
DEventList.java77 final int insertIndex = firstIndexOnOrAfter(event.mTimeStamp + 1); in insert() local
78 mEvents.add(insertIndex, event); in insert()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskStackView.java609 final int insertIndex = findTaskViewInsertIndex(task, taskIndex); in bindVisibleTaskViews() local
610 if (insertIndex != getTaskViews().indexOf(tv)){ in bindVisibleTaskViews()
612 attachViewToParent(tv, insertIndex, tv.getLayoutParams()); in bindVisibleTaskViews()
1509 int insertIndex = findTaskViewInsertIndex(task, taskIndex); in onPickUpViewFromPool() local
1516 addView(tv, insertIndex); in onPickUpViewFromPool()
1524 addViewInLayout(tv, insertIndex, params, true /* preventRequestLayout */); in onPickUpViewFromPool()
1529 attachViewToParent(tv, insertIndex, tv.getLayoutParams()); in onPickUpViewFromPool()
/frameworks/base/services/core/java/com/android/server/wm/
DActivityDisplay.java1306 final int insertIndex = stackIndex <= behindStackIndex in moveStackBehindStack() local
1308 positionChildAt(stack, Math.max(0, insertIndex)); in moveStackBehindStack()
/frameworks/base/core/java/android/view/
DViewGroup.java4303 int insertIndex = i; in buildOrderedChildList() local
4304 while (insertIndex > 0 && mPreSortedChildren.get(insertIndex - 1).getZ() > currentZ) { in buildOrderedChildList()
4305 insertIndex--; in buildOrderedChildList()
4307 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()