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.java231 switch (event.animationType) { in calculateChildAnimationDelay()
347 if (event.animationType == in processAnimationEvents()
360 } else if (event.animationType == in processAnimationEvents()
406 } else if (event.animationType == in processAnimationEvents()
415 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
419 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
431 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents()
433 event.animationType == NotificationStackScrollLayout in processAnimationEvents()
445 event.animationType == NotificationStackScrollLayout in processAnimationEvents()
DAnimationFilter.java127 if (ev.animationType == in applyCombination()
131 if (ev.animationType == NotificationStackScrollLayout.AnimationEvent in applyCombination()
DNotificationStackScrollLayout.java3033 int animationType = childWasSwipedOut in generateChildRemovalEvents() local
3036 AnimationEvent event = new AnimationEvent(child, animationType); in generateChildRemovalEvents()
4732 final int animationType; field in NotificationStackScrollLayout.AnimationEvent
4754 animationType = type; in AnimationEvent()
4772 if (event.animationType == ANIMATION_TYPE_GO_TO_FULL_SHADE) { in combineLength()
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
DItemTouchHelper.java572 int animationType; in select() local
591 animationType = ANIMATION_TYPE_DRAG; in select()
593 animationType = ANIMATION_TYPE_SWIPE_SUCCESS; in select()
595 animationType = ANIMATION_TYPE_SWIPE_CANCEL; in select()
600 final RecoverAnimation rv = new RecoverAnimation(prevSelected, animationType, in select()
629 final long duration = mCallback.getAnimationDuration(mRecyclerView, animationType, in select()
2083 public long getAnimationDuration(RecyclerView recyclerView, int animationType, in getAnimationDuration() argument
2087 return animationType == ANIMATION_TYPE_DRAG ? DEFAULT_DRAG_ANIMATION_DURATION in getAnimationDuration()
2090 return animationType == ANIMATION_TYPE_DRAG ? itemAnimator.getMoveDuration() in getAnimationDuration()
2318 RecoverAnimation(ViewHolder viewHolder, int animationType, in RecoverAnimation() argument
[all …]
/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/base/services/core/java/com/android/server/am/
DActivityRecord.java1390 final int animationType = pendingOptions.getAnimationType(); in applyOptionsLocked() local
1391 switch (animationType) { in applyOptionsLocked()
1423 final boolean scaleUp = (animationType == ANIM_THUMBNAIL_SCALE_UP); in applyOptionsLocked()
1444 animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP); in applyOptionsLocked()
1445 } else if (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_DOWN in applyOptionsLocked()
1456 (animationType == ANIM_THUMBNAIL_ASPECT_SCALE_UP)); in applyOptionsLocked()
1466 Slog.e(TAG, "applyOptionsLocked: Unknown animationType=" + animationType); in applyOptionsLocked()