Home
last modified time | relevance | path

Searched refs:change (Results 1 – 25 of 1531) sorted by relevance

12345678910>>...62

/frameworks/base/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/
DTransitionUtil.java88 final TransitionInfo.Change change = info.getChanges().get(i); in hasDisplayChange() local
89 if (change.getMode() == TRANSIT_CHANGE && change.hasFlags(FLAG_IS_DISPLAY)) { in hasDisplayChange()
97 public static boolean isWallpaper(TransitionInfo.Change change) { in isWallpaper() argument
98 return (change.getTaskInfo() == null) in isWallpaper()
99 && change.hasFlags(FLAG_IS_WALLPAPER) in isWallpaper()
100 && !change.hasFlags(FLAG_IN_TASK_WITH_EMBEDDED_ACTIVITY); in isWallpaper()
104 public static boolean isNonApp(TransitionInfo.Change change) { in isNonApp() argument
105 return (change.getTaskInfo() == null) in isNonApp()
106 && !change.hasFlags(FLAG_IS_WALLPAPER) in isNonApp()
107 && !change.hasFlags(FLAG_IN_TASK_WITH_EMBEDDED_ACTIVITY); in isNonApp()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/
DActivityEmbeddingAnimationRunner.java199 for (TransitionInfo.Change change : info.getChanges()) { in createAnimationAdapters()
200 if (change.hasFlags(FLAG_IS_BEHIND_STARTING_WINDOW)) { in createAnimationAdapters()
204 if (!isChangeTransition && change.getMode() == TRANSIT_CHANGE in createAnimationAdapters()
205 && !change.getStartAbsBounds().equals(change.getEndAbsBounds())) { in createAnimationAdapters()
247 for (TransitionInfo.Change change : info.getChanges()) { in createOpenCloseAnimationAdapters()
248 if (TransitionUtil.isOpeningType(change.getMode())) { in createOpenCloseAnimationAdapters()
249 openingChanges.add(change); in createOpenCloseAnimationAdapters()
250 openingWholeScreenBounds.union(change.getEndAbsBounds()); in createOpenCloseAnimationAdapters()
252 closingChanges.add(change); in createOpenCloseAnimationAdapters()
254 closingWholeScreenBounds.union(change.getStartAbsBounds()); in createOpenCloseAnimationAdapters()
[all …]
DActivityEmbeddingAnimationAdapter.java76 @NonNull TransitionInfo.Change change, @NonNull TransitionInfo.Root root) { in ActivityEmbeddingAnimationAdapter() argument
77 this(animation, change, change.getLeash(), change.getEndAbsBounds(), root); in ActivityEmbeddingAnimationAdapter()
87 @NonNull TransitionInfo.Change change, @NonNull SurfaceControl leash, in ActivityEmbeddingAnimationAdapter() argument
90 mChange = change; in ActivityEmbeddingAnimationAdapter()
94 final Rect startBounds = change.getStartAbsBounds(); in ActivityEmbeddingAnimationAdapter()
95 final Rect endBounds = change.getEndAbsBounds(); in ActivityEmbeddingAnimationAdapter()
96 if (change.getParent() != null) { in ActivityEmbeddingAnimationAdapter()
97 mContentRelOffset.set(change.getEndRelOffset()); in ActivityEmbeddingAnimationAdapter()
106 if (TransitionUtil.isClosingType(change.getMode())) { in ActivityEmbeddingAnimationAdapter()
115 mContentBounds.set(change.getEndAbsBounds()); in ActivityEmbeddingAnimationAdapter()
[all …]
DActivityEmbeddingController.java103 for (TransitionInfo.Change change : info.getChanges()) { in shouldAnimate()
104 if (!change.hasFlags(FLAG_FILLS_TASK) && change.hasFlags( in shouldAnimate()
129 for (TransitionInfo.Change change : info.getChanges()) { in shouldAnimateAnimationOptions()
130 if (!shouldAnimateAnimationOptions(change.getAnimationOptions())) { in shouldAnimateAnimationOptions()
178 for (TransitionInfo.Change change : info.getChanges()) { in containsNonEmbeddedChange()
179 if (!change.hasFlags(FLAG_IN_TASK_WITH_EMBEDDED_ACTIVITY)) { in containsNonEmbeddedChange()
189 final TransitionInfo.Change change = changes.get(i); in handleNonEmbeddedChanges() local
190 if (!TransitionUtil.isClosingType(change.getMode())) { in handleNonEmbeddedChanges()
191 if (change.hasFlags(FLAG_IN_TASK_WITH_EMBEDDED_ACTIVITY)) { in handleNonEmbeddedChanges()
192 nonClosingEmbeddedArea.union(change.getEndAbsBounds()); in handleNonEmbeddedChanges()
[all …]
DActivityEmbeddingAnimationSpec.java77 static Animation createNoopAnimation(@NonNull TransitionInfo.Change change) { in createNoopAnimation() argument
79 final float alpha = TransitionUtil.isClosingType(change.getMode()) ? 0f : 1f; in createNoopAnimation()
94 Animation createChangeBoundsOpenAnimation(@NonNull TransitionInfo.Change change, in createChangeBoundsOpenAnimation() argument
97 final Rect bounds = change.getEndAbsBounds(); in createChangeBoundsOpenAnimation()
122 Animation createChangeBoundsCloseAnimation(@NonNull TransitionInfo.Change change, in createChangeBoundsCloseAnimation() argument
125 final Rect bounds = change.getStartAbsBounds(); in createChangeBoundsCloseAnimation()
154 Animation[] createChangeBoundsChangeAnimations(@NonNull TransitionInfo.Change change, in createChangeBoundsChangeAnimations() argument
158 final Rect startBounds = change.getStartAbsBounds(); in createChangeBoundsChangeAnimations()
159 final Rect endBounds = change.getEndAbsBounds(); in createChangeBoundsChangeAnimations()
204 @NonNull TransitionInfo.Change change, @NonNull Rect wholeAnimationBounds) { in loadOpenAnimation() argument
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/freeform/
DFreeformTaskTransitionObserver.java77 for (TransitionInfo.Change change : info.getChanges()) { in onTransitionReady()
78 if ((change.getFlags() & TransitionInfo.FLAG_IS_WALLPAPER) != 0) { in onTransitionReady()
82 final ActivityManager.RunningTaskInfo taskInfo = change.getTaskInfo(); in onTransitionReady()
88 if (change.getParent() != null in onTransitionReady()
89 && info.getChange(change.getParent()).getTaskInfo() != null) { in onTransitionReady()
93 taskParents.add(change.getParent()); in onTransitionReady()
95 if (taskParents.contains(change.getContainer())) { in onTransitionReady()
99 switch (change.getMode()) { in onTransitionReady()
101 onOpenTransitionReady(change, startT, finishT); in onTransitionReady()
104 onToFrontTransitionReady(change, startT, finishT); in onTransitionReady()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/
DDefaultTransitionHandler.java214 final TransitionInfo.Change change = info.getChanges().get(i); in getRotationAnimationHint() local
217 if (change.getMode() != TRANSIT_CHANGE) continue; in getRotationAnimationHint()
220 if (change.getEndRotation() == change.getStartRotation()) continue; in getRotationAnimationHint()
221 if ((change.getFlags() & FLAG_IS_DISPLAY) != 0) { in getRotationAnimationHint()
223 if ((change.getFlags() & FLAG_DISPLAY_HAS_ALERT_WINDOWS) != 0) { in getRotationAnimationHint()
228 } else if ((change.getFlags() & FLAG_IS_WALLPAPER) != 0) { in getRotationAnimationHint()
229 if (change.getRotationAnimation() != ROTATION_ANIMATION_SEAMLESS) { in getRotationAnimationHint()
234 } else if (change.getTaskInfo() != null) { in getRotationAnimationHint()
235 final int anim = change.getRotationAnimation(); in getRotationAnimationHint()
236 final ActivityManager.RunningTaskInfo taskInfo = change.getTaskInfo(); in getRotationAnimationHint()
[all …]
DMixedTransitionHelper.java62 TransitionInfo.Change change = info.getChanges().get(i); in animateEnterPipFromSplit() local
63 if (pipHandler.isEnteringPip(change, info.getType())) { in animateEnterPipFromSplit()
68 pipChange = change; in animateEnterPipFromSplit()
71 } else if (isHomeOpening(change)) { in animateEnterPipFromSplit()
73 } else if (isWallpaper(change)) { in animateEnterPipFromSplit()
74 wallpaper = change; in animateEnterPipFromSplit()
111 TransitionInfo.Change change = info.getChanges().get(i); in animateEnterPipFromSplit() local
112 if (change == pipChange) { in animateEnterPipFromSplit()
117 splitHandler.getSplitItemStage(change.getLastParent()); in animateEnterPipFromSplit()
186 TransitionInfo.Change change = info.getChanges().get(i); in getPipReplacingChange() local
[all …]
DTransitionAnimationHelper.java69 @NonNull TransitionInfo.Change change, int wallpaperTransit, in loadAttributeAnimation() argument
71 final int changeMode = change.getMode(); in loadAttributeAnimation()
72 final int changeFlags = change.getFlags(); in loadAttributeAnimation()
74 final boolean isTask = change.getTaskInfo() != null; in loadAttributeAnimation()
77 options = change.getAnimationOptions(); in loadAttributeAnimation()
206 for (TransitionInfo.Change change : info.getChanges()) { in getTransitionTypeFromInfo()
207 if ((change.getTaskInfo() != null || change.hasFlags(FLAG_IS_DISPLAY)) in getTransitionTypeFromInfo()
208 && !TransitionUtil.isOrderOnly(change)) { in getTransitionTypeFromInfo()
212 if (change.getTaskInfo() != null in getTransitionTypeFromInfo()
213 && change.hasFlags(FLAG_IS_DISPLAY | FLAGS_IS_NON_APP_WINDOW)) { in getTransitionTypeFromInfo()
[all …]
DCounterRotatorHelper.java59 final TransitionInfo.Change change = changes.get(i); in handleClosingChanges() local
60 final WindowContainerToken parent = change.getParent(); in handleClosingChanges()
61 if (!TransitionUtil.isClosingType(change.getMode()) in handleClosingChanges()
62 || !TransitionInfo.isIndependent(change, info) || parent == null) { in handleClosingChanges()
74 final int layer = (change.getFlags() & FLAG_IS_WALLPAPER) == 0 in handleClosingChanges()
81 crot.addChild(startTransaction, change.getLeash()); in handleClosingChanges()
90 public Rect getEndBoundsInStartRotation(@NonNull TransitionInfo.Change change) { in getEndBoundsInStartRotation() argument
91 if (mLastRotationDelta == 0) return change.getEndAbsBounds(); in getEndBoundsInStartRotation()
92 final Rect rotatedBounds = new Rect(change.getEndAbsBounds()); in getEndBoundsInStartRotation()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/transition/
DHomeTransitionObserverTest.java101 TransitionInfo.Change change = mock(TransitionInfo.Change.class); in testHomeActivityWithOpenModeNotifiesHomeIsVisible() local
103 when(change.getTaskInfo()).thenReturn(taskInfo); in testHomeActivityWithOpenModeNotifiesHomeIsVisible()
104 when(info.getChanges()).thenReturn(new ArrayList<>(List.of(change))); in testHomeActivityWithOpenModeNotifiesHomeIsVisible()
106 setupTransitionInfo(taskInfo, change, ACTIVITY_TYPE_HOME, TRANSIT_OPEN, true); in testHomeActivityWithOpenModeNotifiesHomeIsVisible()
119 TransitionInfo.Change change = mock(TransitionInfo.Change.class); in testHomeActivityWithCloseModeNotifiesHomeIsNotVisible() local
121 when(change.getTaskInfo()).thenReturn(taskInfo); in testHomeActivityWithCloseModeNotifiesHomeIsNotVisible()
122 when(info.getChanges()).thenReturn(new ArrayList<>(List.of(change))); in testHomeActivityWithCloseModeNotifiesHomeIsNotVisible()
124 setupTransitionInfo(taskInfo, change, ACTIVITY_TYPE_HOME, TRANSIT_TO_BACK, true); in testHomeActivityWithCloseModeNotifiesHomeIsNotVisible()
137 TransitionInfo.Change change = mock(TransitionInfo.Change.class); in testNonHomeActivityDoesNotTriggerCallback() local
139 when(change.getTaskInfo()).thenReturn(taskInfo); in testNonHomeActivityDoesNotTriggerCallback()
[all …]
DTransitionInfoBuilder.java56 final TransitionInfo.Change change = new TransitionInfo.Change( in addChange() local
58 change.setMode(mode); in addChange()
59 change.setFlags(flags); in addChange()
60 change.setTaskInfo(taskInfo); in addChange()
61 change.setActivityComponent(activityComponent); in addChange()
62 return addChange(change); in addChange()
86 public TransitionInfoBuilder addChange(TransitionInfo.Change change) { in addChange() argument
87 change.setDisplayId(DISPLAY_ID, DISPLAY_ID); in addChange()
88 mInfo.addChange(change); in addChange()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DRemoteAnimationTargetCompat.java47 return wrap(info, t, leashMap, (change) -> { in wrapApps()
49 if (change.getActivityComponent() != null) return true; in wrapApps()
50 return taskFilter.test(change); in wrapApps()
64 return wrap(info, t, leashMap, (change) -> { in wrapNonApps()
66 if (change.getActivityComponent() != null) return false; in wrapNonApps()
68 ? TransitionUtil.isWallpaper(change) : TransitionUtil.isNonApp(change); in wrapNonApps()
77 TransitionInfo.Change change = info.getChanges().get(i);
78 if (TransitionUtil.isOrderOnly(change)) continue;
79 if (filter.test(change)) {
81 change, info.getChanges().size() - i, info, t, leashMap));
DRemoteAnimationRunnerCompat.java100 final TransitionInfo.Change change = info.getChanges().get(i); in wrap() local
102 if (!leashMap.containsKey(change.getLeash())) continue; in wrap()
103 if (change.getTaskInfo() != null in wrap()
104 && change.getTaskInfo().getActivityType() == ACTIVITY_TYPE_HOME) { in wrap()
105 isReturnToHome = change.getMode() == TRANSIT_OPEN in wrap()
106 || change.getMode() == TRANSIT_TO_FRONT; in wrap()
107 launcherTask = change; in wrap()
109 } else if ((change.getFlags() & FLAG_IS_WALLPAPER) != 0) { in wrap()
110 wallpaper = change; in wrap()
112 if (change.getParent() == null && change.getEndRotation() >= 0 in wrap()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/
DDragToDesktopTransitionHandler.kt315 info.changes.withIndex().forEach { (i, change) -> in <lambda>() method
316 if (TransitionUtil.isWallpaper(change)) { in <lambda>()
319 setLayer(change.leash, layer) in <lambda>()
320 show(change.leash) in <lambda>()
322 } else if (isHomeChange(change)) { in <lambda>()
323 state.homeToken = change.container in <lambda>()
326 setLayer(change.leash, layer) in <lambda>()
327 show(change.leash) in <lambda>()
329 } else if (TransitionInfo.isIndependent(change, info)) { in <lambda>()
333 state.splitRootChange = change in <lambda>()
[all …]
DEnterDesktopTaskTransitionHandler.java104 for (TransitionInfo.Change change : info.getChanges()) { in startAnimation()
105 if ((change.getFlags() & TransitionInfo.FLAG_IS_WALLPAPER) != 0) { in startAnimation()
109 final ActivityManager.RunningTaskInfo taskInfo = change.getTaskInfo(); in startAnimation()
114 if (change.getMode() == WindowManager.TRANSIT_CHANGE) { in startAnimation()
116 transition, info.getType(), change, startT, finishT, finishCallback); in startAnimation()
128 @NonNull TransitionInfo.Change change, in startChangeTransition() argument
136 final ActivityManager.RunningTaskInfo taskInfo = change.getTaskInfo(); in startChangeTransition()
139 return animateMoveToDesktop(change, startT, finishCallback); in startChangeTransition()
146 @NonNull TransitionInfo.Change change, in animateMoveToDesktop()
149 final SurfaceControl leash = change.getLeash(); in animateMoveToDesktop()
[all …]
DToggleResizeDesktopTaskTransitionHandler.kt66 val change = findRelevantChange(info) in <lambda>() constant
67 val leash = change.leash in <lambda>()
68 val taskId = checkNotNull(change.taskInfo).taskId in <lambda>()
69 val startBounds = change.startAbsBounds in <lambda>()
70 val endBounds = change.endAbsBounds in <lambda>()
140 private fun isWallpaper(change: TransitionInfo.Change): Boolean { in <lambda>()
141 return (change.flags and TransitionInfo.FLAG_IS_WALLPAPER) != 0 in <lambda>()
144 private fun isValidTaskChange(change: TransitionInfo.Change): Boolean { in <lambda>()
145 return change.taskInfo != null && change.taskInfo?.taskId != -1 in <lambda>()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/windowdecor/
DFluidResizeTaskPositionerTest.kt163 return@argThat wct.changes.any { (token, change) -> in <lambda>() method
165 ((change.windowSetMask and WindowConfiguration.WINDOW_CONFIG_BOUNDS) != 0) in <lambda>()
183 return@argThat wct.changes.any { (token, change) -> in <lambda>() method
185 ((change.windowSetMask and WindowConfiguration.WINDOW_CONFIG_BOUNDS) != 0) in <lambda>()
196 return@argThat wct.changes.any { (token, change) -> in <lambda>() method
198 ((change.windowSetMask and WindowConfiguration.WINDOW_CONFIG_BOUNDS) != 0) in <lambda>()
217 return@argThat wct.changes.any { (token, change) -> in <lambda>() method
219 (change.windowSetMask and WindowConfiguration.WINDOW_CONFIG_BOUNDS) != 0 && in <lambda>()
220 change.configuration.windowConfiguration.bounds == rectAfterMove in <lambda>()
232 return@argThat wct.changes.any { (token, change) -> in <lambda>() method
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/recents/
DRecentsTransitionHandler.java453 final TransitionInfo.Change change = info.getChanges().get(i); in start() local
454 if (TransitionUtil.isWallpaper(change)) continue; in start()
455 if (TransitionUtil.isClosingType(change.getMode())) { in start()
459 final ActivityManager.RunningTaskInfo taskInfo = change.getTaskInfo(); in start()
498 .mapToInt((change) -> TransitionUtil.rootIndexFor(change, info)) in start()
505 final TransitionInfo.Change change = info.getChanges().get(i); in start() local
506 final ActivityManager.RunningTaskInfo taskInfo = change.getTaskInfo(); in start()
507 if (TransitionUtil.isWallpaper(change)) { in start()
508 final RemoteAnimationTarget target = TransitionUtil.newTarget(change, in start()
514 } else if (leafTaskFilter.test(change)) { in start()
[all …]
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/desktopmode/
DDesktopModeLoggerTransitionObserverTest.kt124 val change = createChange(TRANSIT_OPEN, createTaskInfo(1, WINDOWING_MODE_FULLSCREEN)) in transitOpen_notFreeformWindow_doesNotLogTaskAddedOrSessionEnter() constant
125 val transitionInfo = TransitionInfoBuilder(TRANSIT_OPEN, 0).addChange(change).build() in transitOpen_notFreeformWindow_doesNotLogTaskAddedOrSessionEnter()
135 val change = createChange(TRANSIT_OPEN, createTaskInfo(1, WINDOWING_MODE_FREEFORM)) in transitOpen_logTaskAddedAndEnterReasonAppFreeformIntent() constant
136 val transitionInfo = TransitionInfoBuilder(TRANSIT_OPEN, 0).addChange(change).build() in transitOpen_logTaskAddedAndEnterReasonAppFreeformIntent()
150 val change = createChange(TRANSIT_TO_FRONT, createTaskInfo(1, WINDOWING_MODE_FREEFORM)) in transitEndDragToDesktop_logTaskAddedAndEnterReasonAppHandleDrag() constant
154 .addChange(change) in transitEndDragToDesktop_logTaskAddedAndEnterReasonAppHandleDrag()
169 val change = createChange(TRANSIT_TO_FRONT, createTaskInfo(1, WINDOWING_MODE_FREEFORM)) in transitEnterDesktopByButtonTap_logTaskAddedAndEnterReasonButtonTap() constant
172 .addChange(change) in transitEnterDesktopByButtonTap_logTaskAddedAndEnterReasonButtonTap()
187 val change = createChange(TRANSIT_TO_FRONT, createTaskInfo(1, WINDOWING_MODE_FREEFORM)) in transitEnterDesktopFromAppFromOverview_logTaskAddedAndEnterReasonAppFromOverview() constant
190 .addChange(change) in transitEnterDesktopFromAppFromOverview_logTaskAddedAndEnterReasonAppFromOverview()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/unfold/
DUnfoldTransitionHandler.java126 info.getChanges().forEach(change -> { in startAnimation()
127 if (change.getTaskInfo() != null) { in startAnimation()
130 change.getTaskInfo(), TransitionInfo.modeToString(change.getMode()), in startAnimation()
131 animator.isApplicableTask(change.getTaskInfo())); in startAnimation()
133 if (change.getTaskInfo() != null && (change.getMode() == TRANSIT_CHANGE in startAnimation()
134 || TransitionUtil.isOpeningType(change.getMode())) in startAnimation()
135 && animator.isApplicableTask(change.getTaskInfo())) { in startAnimation()
136 animator.onTaskAppeared(change.getTaskInfo(), change.getLeash()); in startAnimation()
202 final TransitionInfo.Change change = info.getChanges().get(i); in mergeAnimation() local
203 final ActivityManager.RunningTaskInfo taskInfo = change.getTaskInfo(); in mergeAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/log/table/
DTableChange.kt77 fun updateTo(change: TableChange) { in updateTo()
78 reset(change.timestamp, change.columnPrefix, change.columnName, change.isInitial) in updateTo()
79 when (change.type) { in updateTo()
80 DataType.STRING -> set(change.str) in updateTo()
81 DataType.INT -> set(change.int) in updateTo()
82 DataType.BOOLEAN -> set(change.bool) in updateTo()
DTableLogBuffer.kt200 val change = obtain(timestamp, prefix, columnName, isInitial) in logChange() constant
201 change.set(value) in logChange()
202 echoToDesiredEndpoints(change) in logChange()
214 val change = obtain(timestamp, prefix, columnName, isInitial) in logChange() constant
215 change.set(value) in logChange()
216 echoToDesiredEndpoints(change) in logChange()
228 val change = obtain(timestamp, prefix, columnName, isInitial) in logChange() constant
229 change.set(value) in logChange()
230 echoToDesiredEndpoints(change) in logChange()
263 private fun saveEvictedValue(change: TableChange) { in saveEvictedValue()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/splitscreen/
DSplitScreenTransitions.java142 final TransitionInfo.Change change = info.getChanges().get(i); in playInternalAnimation() local
143 final SurfaceControl leash = change.getLeash(); in playInternalAnimation()
146 final int rootIdx = TransitionUtil.rootIndexFor(change, info); in playInternalAnimation()
148 if (change.getParent() != null) { in playInternalAnimation()
150 final TransitionInfo.Change parentChange = info.getChange(change.getParent()); in playInternalAnimation()
160 change.getEndRelOffset().x, change.getEndRelOffset().y); in playInternalAnimation()
164 final boolean isTopRoot = topRoot.equals(change.getContainer()); in playInternalAnimation()
165 final boolean isMainRoot = mainRoot.equals(change.getContainer()); in playInternalAnimation()
166 final boolean isSideRoot = sideRoot.equals(change.getContainer()); in playInternalAnimation()
167 final boolean isDivider = change.getFlags() == FLAG_IS_DIVIDER_BAR; in playInternalAnimation()
[all …]
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/freeform/
DFreeformTaskTransitionObserverTest.java96 final TransitionInfo.Change change = in testCreatesWindowDecorOnOpenTransition_freeform() local
99 .addChange(change).build(); in testCreatesWindowDecorOnOpenTransition_freeform()
108 change.getTaskInfo(), change.getLeash(), startT, finishT); in testCreatesWindowDecorOnOpenTransition_freeform()
113 final TransitionInfo.Change change = in testPreparesWindowDecorOnCloseTransition_freeform() local
116 .addChange(change).build(); in testPreparesWindowDecorOnCloseTransition_freeform()
125 change.getTaskInfo(), startT, finishT); in testPreparesWindowDecorOnCloseTransition_freeform()
130 final TransitionInfo.Change change = in testDoesntCloseWindowDecorDuringCloseTransition() local
133 .addChange(change).build(); in testDoesntCloseWindowDecorDuringCloseTransition()
141 verify(mWindowDecorViewModel, never()).destroyWindowDecoration(change.getTaskInfo()); in testDoesntCloseWindowDecorDuringCloseTransition()
146 final TransitionInfo.Change change = in testClosesWindowDecorAfterCloseTransition() local
[all …]

12345678910>>...62