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.java612 final int insertIndex = findTaskViewInsertIndex(task, taskIndex); in bindVisibleTaskViews() local
613 if (insertIndex != getTaskViews().indexOf(tv)){ in bindVisibleTaskViews()
615 attachViewToParent(tv, insertIndex, tv.getLayoutParams()); in bindVisibleTaskViews()
1512 int insertIndex = findTaskViewInsertIndex(task, taskIndex); in onPickUpViewFromPool() local
1519 addView(tv, insertIndex); in onPickUpViewFromPool()
1527 addViewInLayout(tv, insertIndex, params, true /* preventRequestLayout */); in onPickUpViewFromPool()
1532 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.java4347 int insertIndex = i; in buildOrderedChildList() local
4348 while (insertIndex > 0 && mPreSortedChildren.get(insertIndex - 1).getZ() > currentZ) { in buildOrderedChildList()
4349 insertIndex--; in buildOrderedChildList()
4351 mPreSortedChildren.add(insertIndex, nextChild); in buildOrderedChildList()