Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/buttons/
H A DReverseLinearLayout.java92 ArrayList<View> childList = new ArrayList<>(childCount); in updateOrder() local
94 childList.add(getChildAt(i)); in updateOrder()
98 final View child = childList.get(i); in updateOrder()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapSettingsAdapter.java129 ArrayList<BluetoothMapAccountItem> childList = getChild(parentGroup); in getChildView()
130 int childIndex = childList.indexOf(child); in getChildView()
132 if (mSlotsLeft - childList.size() >= 0) { in getChildView()
134 for (int i = 0; i < childList.size(); i++) { in getChildView()
136 BluetoothMapAccountItem siblings = childList.get(i); in getChildView()
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DZOrderingTests.java472 final ArrayList<WindowState> childList = new ArrayList<>(); in testAssignWindowLayers_ForPostivelyZOrderedSubtype() local
473 childList.add(createWindow(anyWindow, TYPE_APPLICATION_PANEL, mDisplayContent, in testAssignWindowLayers_ForPostivelyZOrderedSubtype()
475 childList.add(createWindow(anyWindow, TYPE_APPLICATION_SUB_PANEL, mDisplayContent, in testAssignWindowLayers_ForPostivelyZOrderedSubtype()
477 childList.add(createWindow(anyWindow, TYPE_APPLICATION_ATTACHED_DIALOG, mDisplayContent, in testAssignWindowLayers_ForPostivelyZOrderedSubtype()
479 childList.add(createWindow(anyWindow, TYPE_APPLICATION_ABOVE_SUB_PANEL, mDisplayContent, in testAssignWindowLayers_ForPostivelyZOrderedSubtype()
485 for (int i = childList.size() - 1; i >= 0; i--) { in testAssignWindowLayers_ForPostivelyZOrderedSubtype()
486 assertThat(t.getLayer(childList.get(i).getSurfaceControl())) in testAssignWindowLayers_ForPostivelyZOrderedSubtype()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DScreenPinningRequest.java331 ArrayList<View> childList = new ArrayList<>(childCount); in swapChildrenIfRtlAndVertical() local
333 childList.add(linearLayout.getChildAt(i)); in swapChildrenIfRtlAndVertical()
337 linearLayout.addView(childList.get(i)); in swapChildrenIfRtlAndVertical()
/aosp12/build/soong/android/
H A Dnamespace.go214 for _, childList := range childLists {
215 allModules = append(allModules, childList...)
/aosp12/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java303 ArrayList<Animator> childList = new ArrayList<Animator>();
308 childList.add(node.mAnimation);
311 return childList;