Home
last modified time | relevance | path

Searched refs:animationType (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DStackStateAnimator.java243 switch (event.animationType) { in calculateChildAnimationDelay()
361 if (event.animationType == in processAnimationEvents()
374 } else if (event.animationType == in processAnimationEvents()
420 } else if (event.animationType == in processAnimationEvents()
426 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
430 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
437 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
442 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
456 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
458 event.animationType == NotificationStackScrollLayout in processAnimationEvents()
[all …]
DAnimationFilter.java127 if (ev.animationType == in applyCombination()
131 if (ev.animationType == NotificationStackScrollLayout.AnimationEvent in applyCombination()
134 } else if (ev.animationType == NotificationStackScrollLayout.AnimationEvent in applyCombination()
DNotificationStackScrollLayout.java3309 int animationType = childWasSwipedOut
3312 AnimationEvent event = new AnimationEvent(child, animationType);
5135 final int animationType;
5157 animationType = type;
5175 if (event.animationType == ANIMATION_TYPE_GO_TO_FULL_SHADE) {
/frameworks/base/core/java/com/android/internal/widget/helper/
DItemTouchHelper.java574 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 …]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DItemTouchHelper.java597 int animationType; in select() local
616 animationType = ANIMATION_TYPE_DRAG; in select()
618 animationType = ANIMATION_TYPE_SWIPE_SUCCESS; in select()
620 animationType = ANIMATION_TYPE_SWIPE_CANCEL; in select()
625 final RecoverAnimation rv = new RecoverAnimation(prevSelected, animationType, in select()
654 final long duration = mCallback.getAnimationDuration(mRecyclerView, animationType, in select()
2111 public long getAnimationDuration(@NonNull RecyclerView recyclerView, int animationType, in getAnimationDuration() argument
2115 return animationType == ANIMATION_TYPE_DRAG ? DEFAULT_DRAG_ANIMATION_DURATION in getAnimationDuration()
2118 return animationType == ANIMATION_TYPE_DRAG ? itemAnimator.getMoveDuration() in getAnimationDuration()
2381 RecoverAnimation(ViewHolder viewHolder, int animationType, in RecoverAnimation() argument
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DActivityRecord.java1468 final int animationType = pendingOptions.getAnimationType(); in applyOptionsLocked() local
1469 switch (animationType) { in applyOptionsLocked()
1501 final boolean scaleUp = (animationType == ANIM_THUMBNAIL_SCALE_UP); in applyOptionsLocked()
1522 animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP); in applyOptionsLocked()
1523 } else if (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_DOWN in applyOptionsLocked()
1534 (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP)); in applyOptionsLocked()
1551 Slog.e(TAG, "applyOptionsLocked: Unknown animationType=" + animationType); in applyOptionsLocked()