Home
last modified time | relevance | path

Searched refs:mUnfoldAnimationController (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/unfold/
DUnfoldAnimationControllerTest.java76 private UnfoldAnimationController mUnfoldAnimationController; field in UnfoldAnimationControllerTest
93 mUnfoldAnimationController = new UnfoldAnimationController( in setUp()
114 mUnfoldAnimationController.onTaskAppeared(taskInfo, mLeash); in testAppearedMatchingTask_appliesUnfoldProgress()
116 mUnfoldAnimationController.onStateChangeProgress(0.5f); in testAppearedMatchingTask_appliesUnfoldProgress()
129 mUnfoldAnimationController.onTaskAppeared(taskInfo1, mLeash); in testAppearedMatchingTaskTwoDifferentAnimators_appliesUnfoldProgressToBoth()
130 mUnfoldAnimationController.onTaskAppeared(taskInfo2, mLeash); in testAppearedMatchingTaskTwoDifferentAnimators_appliesUnfoldProgressToBoth()
132 mUnfoldAnimationController.onStateChangeProgress(0.5f); in testAppearedMatchingTaskTwoDifferentAnimators_appliesUnfoldProgressToBoth()
143 mUnfoldAnimationController.onTaskAppeared(taskInfo, mLeash); in testAppearedNonMatchingTask_doesNotApplyUnfoldProgress()
145 mUnfoldAnimationController.onStateChangeProgress(0.5f); in testAppearedNonMatchingTask_doesNotApplyUnfoldProgress()
155 mUnfoldAnimationController.onTaskAppeared(taskInfo, mLeash); in testAppearedAndChangedToNonMatchingTask_doesNotApplyUnfoldProgress()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/
DShellTaskOrganizer.java199 private final UnfoldAnimationController mUnfoldAnimationController; field in ShellTaskOrganizer
234 mUnfoldAnimationController = unfoldAnimationController.orElse(null); in ShellTaskOrganizer()
503 if (mUnfoldAnimationController != null) { in onTaskAppeared()
504 mUnfoldAnimationController.onTaskAppeared(info.getTaskInfo(), info.getLeash()); in onTaskAppeared()
538 if (mUnfoldAnimationController != null) { in onTaskInfoChanged()
539 mUnfoldAnimationController.onTaskInfoChanged(taskInfo); in onTaskInfoChanged()
595 if (mUnfoldAnimationController != null) { in onTaskVanished()
596 mUnfoldAnimationController.onTaskVanished(taskInfo); in onTaskVanished()