Home
last modified time | relevance | path

Searched refs:revealAnimator (Results 1 – 3 of 3) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/alarms/
DAlarmActivity.kt604 val revealAnimator: Animator = ObjectAnimator.ofFloat( in getAlertAnimator() constant
606 revealAnimator.setDuration(ALERT_REVEAL_DURATION_MILLIS.toLong()) in getAlertAnimator()
607 revealAnimator.setInterpolator(REVEAL_INTERPOLATOR) in getAlertAnimator()
608 revealAnimator.addListener(object : AnimatorListenerAdapter() { in getAlertAnimator()
630 alertAnimator.play(revealAnimator).before(fadeAnimator) in getAlertAnimator()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DTaskMenuView.java282 final Animator revealAnimator = createOpenCloseOutlineProvider()
284 revealAnimator.setInterpolator(Interpolators.DEACCEL);
285 mOpenCloseAnimator.playTogether(revealAnimator,
/packages/services/Car/tests/MultiDisplaySecondaryHomeTestLauncher/src/com/android/car/multidisplay/launcher/
DLauncherActivity.java292 final Animator animator = revealAnimator(mAppDrawerView, show); in showAppDrawer()
317 private Animator revealAnimator(View view, boolean open) { in revealAnimator() method in LauncherActivity