Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DRemoteAnimationController.java106 RemoteAnimationRecord createRemoteAnimationRecord(WindowContainer windowContainer, in createRemoteAnimationRecord() argument
109 return createRemoteAnimationRecord(windowContainer, position, localBounds, endBounds, in createRemoteAnimationRecord()
125 RemoteAnimationRecord createRemoteAnimationRecord(WindowContainer windowContainer, in createRemoteAnimationRecord() argument
129 windowContainer); in createRemoteAnimationRecord()
130 final RemoteAnimationRecord adapters = new RemoteAnimationRecord(windowContainer, position, in createRemoteAnimationRecord()
467 RemoteAnimationRecord(WindowContainer windowContainer, Point endPos, Rect localBounds,
470 mWindowContainer = windowContainer;
DInsetsSourceProvider.java167 void setWindowContainer(@Nullable WindowContainer windowContainer, in setWindowContainer() argument
185 windowContainer, WindowInsets.Type.toString(mSource.getType())); in setWindowContainer()
186 mWindowContainer = windowContainer; in setWindowContainer()
191 if (windowContainer == null) { in setWindowContainer()
DDisplayPolicy.java1168 return (displayFrames, windowContainer, inOutFrame) -> { in getFrameProvider()
1179 inOutFrame.set(windowContainer.getBounds()); in getFrameProvider()
1241 return (displayFrames, windowContainer, inOutFrame) -> { in getImeSourceFrameProvider()
1242 WindowState windowState = windowContainer.asWindowState(); in getImeSourceFrameProvider()
/frameworks/base/core/java/android/window/
DWindowContainerTransaction.java855 @NonNull WindowContainerToken windowContainer, in setAlwaysOnTop()
860 .setContainer(windowContainer.asBinder()) in setAlwaysOnTop()
919 @NonNull WindowContainerToken windowContainer, boolean reparentLeafTaskIfRelaunch) { in setReparentLeafTaskIfRelaunch()
923 .setContainer(windowContainer.asBinder()) in setReparentLeafTaskIfRelaunch()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DWindowContainerTests.java1081 final WindowContainer windowContainer = new WindowContainer(mWm); in testGetDisplayArea() local
1083 assertNull(windowContainer.getDisplayArea()); in testGetDisplayArea()
1087 task.addChild(windowContainer, 0); in testGetDisplayArea()
1090 assertNull(windowContainer.getDisplayArea()); in testGetDisplayArea()
1098 assertEquals(taskDisplayArea, windowContainer.getDisplayArea()); in testGetDisplayArea()
DDisplayAreaTest.java146 final WindowContainer windowContainer = new WindowContainer(mWm); in testAsDisplayArea() local
151 assertThat(windowContainer.asDisplayArea()).isNull(); in testAsDisplayArea()