Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/view/
H A DGhostView.java107 if (ghostView != null) { in addGhost()
113 ghostView = null; in addGhost()
116 if (ghostView == null) { in addGhost()
122 ghostView.setMatrix(matrix); in addGhost()
126 copySize(viewGroup, ghostView); in addGhost()
127 parent.addView(ghostView); in addGhost()
133 ghostView.setMatrix(matrix); in addGhost()
135 ghostView.mReferences++; in addGhost()
136 return ghostView; in addGhost()
147 if (ghostView != null) { in removeGhost()
[all …]
/aosp12/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DGhostedViewLaunchAnimatorController.kt65 private var ghostView: GhostView? = null
168 ghostView = GhostView.addGhost(ghostedView, launchContainer)
170 val matrix = ghostView?.animationMatrix ?: Matrix.IDENTITY_MATRIX
181 val ghostView = this.ghostView ?: return regex
185 if (ghostView.visibility == View.VISIBLE) {
188 ghostView.visibility = View.INVISIBLE
201 if (ghostView.visibility == View.INVISIBLE) {
202 ghostView.visibility = View.VISIBLE
232 ghostView.animationMatrix = ghostViewMatrix
253 if (ghostView == null) {
/aosp12/frameworks/base/core/java/android/transition/
H A DChangeTransform.java376 GhostView ghostView = GhostView.addGhost(view, sceneRoot, localEndMatrix); in createGhostView() local
382 GhostListener listener = new GhostListener(view, startValues.view, ghostView); in createGhostView()
475 public GhostListener(View view, View startView, GhostView ghostView) { in GhostListener() argument
478 mGhostView = ghostView; in GhostListener()
/aosp12/frameworks/base/core/java/android/app/
H A DActivityTransitionCoordinator.java929 GhostView ghostView = GhostView.getGhost(mSharedElements.get(i)); in setGhostVisibility() local
930 if (ghostView != null) { in setGhostVisibility()
931 ghostView.setVisibility(visibility); in setGhostVisibility()
1080 GhostView ghostView = GhostView.getGhost(mView); in onPreDraw() local
1081 if (ghostView == null || !mView.isAttachedToWindow()) { in onPreDraw()
1085 ghostView.setMatrix(mMatrix); in onPreDraw()