Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DLaunchAnimator.kt87 var launchContainer: ViewGroup
240 val launchContainer = controller.launchContainer regex
241 val isExpandingFullyAbove = isExpandingFullyAbove(launchContainer, endState)
257 val launchContainerOverlay = launchContainer.overlay
322 launchContainer,
338 internal fun isExpandingFullyAbove(launchContainer: View, endState: State): Boolean {
339 launchContainer.getLocationOnScreen(launchContainerLocation)
341 endState.bottom >= launchContainerLocation[1] + launchContainer.height &&
343 endState.right >= launchContainerLocation[0] + launchContainer.width
350 launchContainer: View,
[all …]
H A DActivityLaunchAnimator.kt188 this.launchContainer.context.mainExecutor.execute {
289 private val launchContainer = controller.launchContainer regex
290 private val context = launchContainer.context
291 private val transactionApplier = SyncRtSurfaceTransactionApplier(launchContainer)
310 launchContainer.postDelayed(onTimeout, LAUNCH_TIMEOUT)
314 launchContainer.removeCallbacks(onTimeout)
382 launchAnimator.isExpandingFullyAbove(controller.launchContainer, endState)
H A DGhostedViewLaunchAnimatorController.kt59 override var launchContainer = ghostedView.rootView as ViewGroup
61 get() = launchContainer.overlay
156 backgroundView = FrameLayout(launchContainer.context)
168 ghostView = GhostView.addGhost(ghostedView, launchContainer)
219 GhostView.calculateMatrix(ghostedView, launchContainer, ghostViewMatrix)
222 launchContainer.getLocationOnScreen(launchContainerLocation)
H A DDialogLaunchAnimator.kt620 startViewController.launchContainer = decorView
621 endViewController.launchContainer = decorView
625 override var launchContainer: ViewGroup
626 get() = startViewController.launchContainer
628 startViewController.launchContainer = value
629 endViewController.launchContainer = value
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
H A DActivityLaunchAnimatorTest.kt48 private val launchContainer = LinearLayout(mContext) regex
51 @Spy private val controller = TestLaunchAnimatorController(launchContainer)
212 override var launchContainer: ViewGroup
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationLaunchAnimatorController.kt52 override var launchContainer: ViewGroup