/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/ |
D | PortraitStatesTouchController.java | 21 import static com.android.launcher3.LauncherState.OVERVIEW; 114 } else if (mLauncher.isInState(OVERVIEW)) { in canInterceptTouch() 138 } else if (fromState == OVERVIEW) { in getTargetState() 145 ? OVERVIEW : ALL_APPS; in getTargetState() 185 if (fromState == NORMAL && toState == OVERVIEW) { in getAnimatorSetBuilderForStates() 187 } else if (fromState == OVERVIEW && toState == ALL_APPS) { in getAnimatorSetBuilderForStates() 189 } else if (fromState == ALL_APPS && toState == OVERVIEW) { in getAnimatorSetBuilderForStates() 211 if (mFromState == OVERVIEW && mToState == NORMAL in initCurrentAnimation() 214 mLauncher.getStateManager().goToState(OVERVIEW, false /* animate */); in initCurrentAnimation() 265 if (QUICKSTEP_SPRINGS.get() && mFromState == OVERVIEW && mToState == ALL_APPS in handleFirstSwipeToOverview() [all …]
|
D | LandscapeEdgeSwipeController.java | 4 import static com.android.launcher3.LauncherState.OVERVIEW; 45 return draggingFromNav ? OVERVIEW : NORMAL; in getTargetState() 75 if (mStartState == NORMAL && targetState == OVERVIEW) { in onSwipeInteractionCompleted()
|
/packages/apps/Launcher3/quickstep/tests/src/com/android/quickstep/ |
D | TaplTestsQuickstep.java | 75 waitForState("Launcher internal state didn't switch to Overview", LauncherState.OVERVIEW); in testPressRecentAppsLauncherAndGetOverview() 104 isInState(LauncherState.OVERVIEW)); in testOverview() 113 assertTrue("Launcher internal state is not Overview", isInState(LauncherState.OVERVIEW)); in testOverview() 120 assertTrue("Launcher internal state is not Overview", isInState(LauncherState.OVERVIEW)); in testOverview() 139 isInState(LauncherState.OVERVIEW)); in testOverview() 159 isInState(LauncherState.OVERVIEW)); in testOverview() 206 isInState(LauncherState.OVERVIEW)); in testSwitchToOverview() 223 isInState(LauncherState.OVERVIEW)); in testBackground()
|
D | DigitalWellBeingToastTest.java | 5 import static com.android.launcher3.LauncherState.OVERVIEW; 70 executeOnLauncher(launcher -> launcher.getStateManager().goToState(OVERVIEW)); in getToast() 71 waitForState("Launcher internal state didn't switch to Overview", OVERVIEW); in getToast()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/ |
D | LauncherActivityControllerHelper.java | 26 import static com.android.launcher3.LauncherState.OVERVIEW; 208 final LauncherState fromState = animateActivity ? BACKGROUND_APP : OVERVIEW; 256 float shelfOverviewProgress = OVERVIEW.getVerticalProgress(activity); 332 LauncherState endState = OVERVIEW; 453 launcher.getStateManager().goToState(OVERVIEW, 483 return launcher != null && launcher.getStateManager().getState() == OVERVIEW && 489 launcher.getStateManager().goToState(OVERVIEW);
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/ |
D | FlingAndHoldTouchController.java | 22 import static com.android.launcher3.LauncherState.OVERVIEW; 151 if ((OVERVIEW.getVisibleElements(mLauncher) & HOTSEAT_ICONS) != 0) { in onDragEnd() 156 NORMAL, OVERVIEW, builder, ANIM_ALL, ATOMIC_DURATION); in onDragEnd() 160 onSwipeInteractionCompleted(OVERVIEW, Touch.SWIPE); in onDragEnd()
|
D | NavBarToHomeTouchController.java | 22 import static com.android.launcher3.LauncherState.OVERVIEW; 98 if (mStartState == OVERVIEW || mStartState == ALL_APPS) { in canInterceptTouch() 124 if (mStartState == OVERVIEW) { in initCurrentAnimation()
|
D | OverviewToAllAppsTouchController.java | 20 import static com.android.launcher3.LauncherState.OVERVIEW; 57 } else if (mLauncher.isInState(OVERVIEW)) { in canInterceptTouch()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/states/ |
D | AllAppsState.java | 65 ScaleAndTranslation scaleAndTranslation = LauncherState.OVERVIEW in getWorkspaceScaleAndTranslation() 95 return previousState == OVERVIEW ? OVERVIEW : NORMAL; in getHistoryForState()
|
/packages/apps/Launcher3/go/quickstep/src/com/android/quickstep/ |
D | LauncherActivityControllerHelper.java | 19 import static com.android.launcher3.LauncherState.OVERVIEW; 49 fromState, OVERVIEW, transitionLength)); in prepareRecentsUI() 96 launcher.getStateManager().goToState(OVERVIEW,
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | AllAppsTransitionController.java | 7 import static com.android.launcher3.LauncherState.OVERVIEW; 139 if ((OVERVIEW.getVisibleElements(mLauncher) & HOTSEAT_ICONS) != 0) { in setProgress() 141 float overviewProgress = OVERVIEW.getVerticalProgress(mLauncher); in setProgress() 188 Interpolator interpolator = config.userControlled ? LINEAR : toState == OVERVIEW in setStateWithAnimation()
|
D | DiscoveryBounce.java | 20 import static com.android.launcher3.LauncherState.OVERVIEW; 170 if (!launcher.isInState(OVERVIEW) in showForOverviewIfNeeded() 191 new DiscoveryBounce(launcher, (1 - OVERVIEW.getVerticalProgress(launcher))) in showForOverviewIfNeeded()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/ |
D | StatsLogCompatManager.java | 29 import static android.stats.launcher.nano.Launcher.OVERVIEW; 71 int srcState = OVERVIEW; in logTaskLaunch() 99 StatsLogUtils.LAUNCHER_STATE_OVERVIEW == OVERVIEW && in verify()
|
/packages/apps/Launcher3/src/com/android/launcher3/touch/ |
D | ItemLongClickListener.java | 22 import static com.android.launcher3.LauncherState.OVERVIEW; 50 if (!launcher.isInState(NORMAL) && !launcher.isInState(OVERVIEW)) return false; in onWorkspaceItemLongClick() 80 if (!launcher.isInState(ALL_APPS) && !launcher.isInState(OVERVIEW)) return false; in onAllAppsItemLongClick()
|
D | AbstractStateChangeTouchController.java | 21 import static com.android.launcher3.LauncherState.OVERVIEW; 236 return (fromState == NORMAL || fromState == OVERVIEW) in goingBetweenNormalAndOverview() 237 && (toState == NORMAL || toState == OVERVIEW) in goingBetweenNormalAndOverview() 251 } else if (mStartState == OVERVIEW){ in onDragStart() 323 float threshold = toState == OVERVIEW ? ATOMIC_OVERVIEW_ANIM_THRESHOLD in maybeUpdateAtomicAnim()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/ |
D | ShelfScrimView.java | 20 import static com.android.launcher3.LauncherState.OVERVIEW; 98 mMaxScrimAlpha = Math.round(OVERVIEW.getWorkspaceScrimAlpha(mLauncher) * 255); in ShelfScrimView() 151 if ((OVERVIEW.getVisibleElements(mLauncher) & ALL_APPS_HEADER_EXTRA) == 0) { in reInitUi()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/ |
D | LauncherRecentsView.java | 21 import static com.android.launcher3.LauncherState.OVERVIEW; 86 if (state == OVERVIEW || state == ALL_APPS) { in setTranslationY() 241 setOverlayEnabled(finalState == OVERVIEW); in onStateTransitionComplete()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/ |
D | PredictionUiStateManager.java | 20 import static com.android.launcher3.LauncherState.OVERVIEW; 69 OVERVIEW("overview"); enumConstant 306 if (!launcher.isInState(OVERVIEW) && !launcher.isInState(BACKGROUND_APP)) { in canApplyPredictions()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/ |
D | RecentsUiFactory.java | 20 import static com.android.launcher3.LauncherState.OVERVIEW; 196 boolean visible = (state == NORMAL || state == OVERVIEW) && launcher.isUserActive() in onLauncherStateOrResumeChanged() 215 return mActivity.isInState(OVERVIEW); in isRecentsInteractive()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/ |
D | UiFactory.java | 25 import static com.android.launcher3.LauncherState.OVERVIEW; 117 if (((swipeUpEnabled && finalState == OVERVIEW) || (!swipeUpEnabled in onCreate() 137 if ((finalState == ALL_APPS && prevState == OVERVIEW) || BOUNCE_MAX_COUNT <= in onCreate()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/states/ |
D | OverviewState.java | 174 newContainerTarget(ContainerType.OVERVIEW)); 184 if (fromState == NORMAL && this == OVERVIEW) {
|
D | QuickSwitchState.java | 58 launcher.getStateManager().goToState(OVERVIEW); in onStateTransitionEnd()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | LauncherState.java | 109 public static final LauncherState OVERVIEW = new OverviewState(OVERVIEW_STATE_ORDINAL); field in LauncherState 294 if (this == NORMAL && fromState == OVERVIEW) {
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/ |
D | LauncherInitListenerEx.java | 31 PredictionUiStateManager.INSTANCE.get(launcher).switchClient(Client.OVERVIEW); in init()
|
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/ |
D | Overview.java | 38 return LauncherInstrumentation.ContainerType.OVERVIEW; in getContainerType()
|