/frameworks/base/services/core/java/com/android/server/wm/ |
D | BoundsAnimationController.java | 188 BoundsAnimator(BoundsAnimationTarget target, @AnimationType int animationType, Rect from, in BoundsAnimator() argument 194 mAnimationType = animationType; in BoundsAnimator() 433 @AnimationType int animationType) { in animateBounds() argument 435 moveFromFullscreen, moveToFullscreen, animationType); in animateBounds() 454 @AnimationType int animationType) { in animateBoundsImpl() argument 459 animationType = FADE_IN; in animateBoundsImpl() 520 if (animationType == FADE_IN) { in animateBoundsImpl() 524 final BoundsAnimator animator = new BoundsAnimator(target, animationType, from, to, in animateBoundsImpl() 529 animator.setDuration(animationType == FADE_IN ? FADE_IN_DURATION in animateBoundsImpl() 537 public void setAnimationType(@AnimationType int animationType) { in setAnimationType() argument [all …]
|
D | BoundsAnimationTarget.java | 36 @BoundsAnimationController.AnimationType int animationType); in onAnimationStart() argument
|
D | TaskStack.java | 1586 @BoundsAnimationController.AnimationType int animationType) { in onAnimationStart() argument 1596 mAnimationType = animationType; in onAnimationStart() 1613 if ((schedulePipModeChangedCallback || animationType == FADE_IN) in onAnimationStart() 1753 final @BoundsAnimationController.AnimationType int animationType = intendedAnimationType; in animateResizePinnedStack() local 1758 fromFullscreen, toFullscreen, animationType); in animateResizePinnedStack()
|
D | ActivityRecord.java | 1664 final int animationType = pendingOptions.getAnimationType(); in applyOptionsLocked() local 1666 switch (animationType) { in applyOptionsLocked() 1698 final boolean scaleUp = (animationType == ANIM_THUMBNAIL_SCALE_UP); in applyOptionsLocked() 1719 animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP); in applyOptionsLocked() 1720 } else if (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_DOWN in applyOptionsLocked() 1731 (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP)); in applyOptionsLocked() 1751 Slog.e(TAG_WM, "applyOptionsLocked: Unknown animationType=" + animationType); in applyOptionsLocked()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | StackStateAnimator.java | 230 switch (event.animationType) { in calculateChildAnimationDelay() 345 if (event.animationType == in processAnimationEvents() 357 } else if (event.animationType == in processAnimationEvents() 398 } else if (event.animationType == in processAnimationEvents() 404 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents() 408 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents() 422 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents() 424 event.animationType == NotificationStackScrollLayout in processAnimationEvents() 430 int extraDelay = event.animationType == NotificationStackScrollLayout in processAnimationEvents()
|
D | AnimationFilter.java | 122 if (ev.animationType == in applyCombination() 126 if (ev.animationType == NotificationStackScrollLayout.AnimationEvent in applyCombination() 129 } else if (ev.animationType == NotificationStackScrollLayout.AnimationEvent in applyCombination()
|
D | NotificationStackScrollLayout.java | 3445 final int type = animationEvent.animationType; 3491 int animationType = childWasSwipedOut 3494 AnimationEvent event = new AnimationEvent(child, animationType); 6052 final int animationType; 6074 animationType = type; 6092 if (event.animationType == ANIMATION_TYPE_GO_TO_FULL_SHADE) {
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | BoundsAnimationControllerTests.java | 155 boolean forceUpdate, @BoundsAnimationController.AnimationType int animationType) { in onAnimationStart() argument 160 mAnimationType = animationType; in onAnimationStart() 225 @BoundsAnimationController.AnimationType int animationType) { in start() argument 239 startImpl(from, to, animationType); in start() 290 @BoundsAnimationController.AnimationType int animationType) { in startImpl() argument 297 mAnimationType = animationType; in startImpl() 306 schedulePipModeChangedState, fromFullscreen, toFullscreen, animationType); in startImpl() 308 if (animationType == BOUNDS) { in startImpl()
|
/frameworks/base/core/java/com/android/internal/widget/helper/ |
D | ItemTouchHelper.java | 574 int animationType; in select() local 593 animationType = ANIMATION_TYPE_DRAG; in select() 595 animationType = ANIMATION_TYPE_SWIPE_SUCCESS; in select() 597 animationType = ANIMATION_TYPE_SWIPE_CANCEL; in select() 602 final RecoverAnimation rv = new RecoverAnimation(prevSelected, animationType, in select() 631 final long duration = mCallback.getAnimationDuration(mRecyclerView, animationType, in select() 2077 public long getAnimationDuration(RecyclerView recyclerView, int animationType, in getAnimationDuration() argument 2081 return animationType == ANIMATION_TYPE_DRAG ? DEFAULT_DRAG_ANIMATION_DURATION in getAnimationDuration() 2084 return animationType == ANIMATION_TYPE_DRAG ? itemAnimator.getMoveDuration() in getAnimationDuration() 2312 RecoverAnimation(ViewHolder viewHolder, int animationType, in RecoverAnimation() argument [all …]
|