Lines Matching refs:animated
2556 … private void dispatchOnLauncherTransitionPrepare(View v, boolean animated, boolean toWorkspace) { in dispatchOnLauncherTransitionPrepare() argument
2558 ((LauncherTransitionable) v).onLauncherTransitionPrepare(this, animated, toWorkspace); in dispatchOnLauncherTransitionPrepare()
2562 private void dispatchOnLauncherTransitionStart(View v, boolean animated, boolean toWorkspace) { in dispatchOnLauncherTransitionStart() argument
2564 ((LauncherTransitionable) v).onLauncherTransitionStart(this, animated, toWorkspace); in dispatchOnLauncherTransitionStart()
2577 private void dispatchOnLauncherTransitionEnd(View v, boolean animated, boolean toWorkspace) { in dispatchOnLauncherTransitionEnd() argument
2579 ((LauncherTransitionable) v).onLauncherTransitionEnd(this, animated, toWorkspace); in dispatchOnLauncherTransitionEnd()
2631 private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded) { in showAppsCustomizeHelper() argument
2651 mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated); in showAppsCustomizeHelper()
2653 if (animated) { in showAppsCustomizeHelper()
2700 dispatchOnLauncherTransitionEnd(fromView, animated, false); in showAppsCustomizeHelper()
2701 dispatchOnLauncherTransitionEnd(toView, animated, false); in showAppsCustomizeHelper()
2730 dispatchOnLauncherTransitionPrepare(fromView, animated, false); in showAppsCustomizeHelper()
2731 dispatchOnLauncherTransitionPrepare(toView, animated, false); in showAppsCustomizeHelper()
2749 dispatchOnLauncherTransitionStart(fromView, animated, false); in showAppsCustomizeHelper()
2750 dispatchOnLauncherTransitionStart(toView, animated, false); in showAppsCustomizeHelper()
2783 dispatchOnLauncherTransitionPrepare(fromView, animated, false); in showAppsCustomizeHelper()
2784 dispatchOnLauncherTransitionStart(fromView, animated, false); in showAppsCustomizeHelper()
2785 dispatchOnLauncherTransitionEnd(fromView, animated, false); in showAppsCustomizeHelper()
2786 dispatchOnLauncherTransitionPrepare(toView, animated, false); in showAppsCustomizeHelper()
2787 dispatchOnLauncherTransitionStart(toView, animated, false); in showAppsCustomizeHelper()
2788 dispatchOnLauncherTransitionEnd(toView, animated, false); in showAppsCustomizeHelper()
2798 private void hideAppsCustomizeHelper(State toState, final boolean animated, in hideAppsCustomizeHelper() argument
2820 Workspace.State.NORMAL, animated, stagger); in hideAppsCustomizeHelper()
2823 Workspace.State.SPRING_LOADED, animated); in hideAppsCustomizeHelper()
2828 showHotseat(animated); in hideAppsCustomizeHelper()
2829 if (animated) { in hideAppsCustomizeHelper()
2852 dispatchOnLauncherTransitionPrepare(fromView, animated, true); in hideAppsCustomizeHelper()
2853 dispatchOnLauncherTransitionPrepare(toView, animated, true); in hideAppsCustomizeHelper()
2861 dispatchOnLauncherTransitionEnd(fromView, animated, true); in hideAppsCustomizeHelper()
2862 dispatchOnLauncherTransitionEnd(toView, animated, true); in hideAppsCustomizeHelper()
2878 dispatchOnLauncherTransitionStart(fromView, animated, true); in hideAppsCustomizeHelper()
2879 dispatchOnLauncherTransitionStart(toView, animated, true); in hideAppsCustomizeHelper()
2883 dispatchOnLauncherTransitionPrepare(fromView, animated, true); in hideAppsCustomizeHelper()
2884 dispatchOnLauncherTransitionStart(fromView, animated, true); in hideAppsCustomizeHelper()
2885 dispatchOnLauncherTransitionEnd(fromView, animated, true); in hideAppsCustomizeHelper()
2886 dispatchOnLauncherTransitionPrepare(toView, animated, true); in hideAppsCustomizeHelper()
2887 dispatchOnLauncherTransitionStart(toView, animated, true); in hideAppsCustomizeHelper()
2888 dispatchOnLauncherTransitionEnd(toView, animated, true); in hideAppsCustomizeHelper()
2918 void showWorkspace(boolean animated) { in showWorkspace() argument
2919 showWorkspace(animated, null); in showWorkspace()
2922 void showWorkspace(boolean animated, Runnable onCompleteRunnable) { in showWorkspace() argument
2926 hideAppsCustomizeHelper(State.WORKSPACE, animated, false, onCompleteRunnable); in showWorkspace()
2935 showDockDivider(animated && wasInSpringLoadedMode); in showWorkspace()
2943 mWorkspace.flashScrollingIndicator(animated); in showWorkspace()
2957 void showAllApps(boolean animated) { in showAllApps() argument
2960 showAppsCustomizeHelper(animated, false); in showAllApps()
3008 final boolean animated = true; in exitSpringLoadedDragMode()
3010 showAppsCustomizeHelper(animated, springLoaded); in exitSpringLoadedDragMode()
3023 void showDockDivider(boolean animated) { in showDockDivider() argument
3033 if (animated) { in showDockDivider()
3058 void showHotseat(boolean animated) { in showHotseat() argument
3060 if (animated) { in showHotseat()
3077 void hideHotseat(boolean animated) { in hideHotseat() argument
3079 if (animated) { in hideHotseat()
4154 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace); in onLauncherTransitionPrepare() argument
4155 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace); in onLauncherTransitionStart() argument
4157 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace); in onLauncherTransitionEnd() argument