Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/
DActivityEmbeddingAnimationRunner.java415 final TransitionInfo.Change parentChange = info.getChange(parentToken); in createChangeAnimationAdapters() local
416 if (parentChange != null && TransitionUtil.isOpeningType(parentChange.getMode())) { in createChangeAnimationAdapters()
419 handledChanges.add(parentChange); in createChangeAnimationAdapters()
420 boundsAnimationChange = parentChange; in createChangeAnimationAdapters()
549 final TransitionInfo.Change parentChange = info.getChange(parentToken); in shouldUseJumpCutForChangeTransition() local
550 if (parentChange != null && TransitionUtil.isOpeningType(parentChange.getMode())) { in shouldUseJumpCutForChangeTransition()
551 changingChanges.add(parentChange); in shouldUseJumpCutForChangeTransition()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/splitscreen/
DSplitScreenTransitions.java150 final TransitionInfo.Change parentChange = info.getChange(change.getParent()); in playInternalAnimation() local
151 t.show(parentChange.getLeash()); in playInternalAnimation()
152 t.setAlpha(parentChange.getLeash(), 1.f); in playInternalAnimation()
155 t.reparent(parentChange.getLeash(), info.getRoot(rootIdx).getLeash()); in playInternalAnimation()
156 t.setLayer(parentChange.getLeash(), info.getChanges().size() - i); in playInternalAnimation()
158 mFinishTransaction.reparent(leash, parentChange.getLeash()); in playInternalAnimation()
/frameworks/base/services/core/java/com/android/server/wm/
DTransition.java2422 final ChangeInfo parentChange = changes.get(parent); in canPromote() local
2424 || parentChange == null || !parentChange.hasChanged()) { in canPromote()
2513 final ChangeInfo parentChange = changes.get(parent); in tryPromote() local
2514 if (targets.mArray.indexOfValue(parentChange) < 0) { in tryPromote()
2519 targets.add(parentChange); in tryPromote()
2522 parentChange.mFlags |= ChangeInfo.FLAG_CHANGE_NO_ANIMATION; in tryPromote()
2524 parentChange.mFlags |= ChangeInfo.FLAG_CHANGE_YES_ANIMATION; in tryPromote()
2527 parentChange.mFlags |= ChangeInfo.FLAG_CHANGE_CONFIG_AT_END; in tryPromote()
2596 final ChangeInfo parentChange = changes.get(p); in populateParentChanges() local
2597 if (parentChange == null) { in populateParentChanges()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardService.java140 final TransitionInfo.Change parentChange = info.getChange(change.getParent()); in wrap() local
141 if (parentChange != null && parentChange.getTaskInfo() != null) { in wrap()