/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/fallback/ |
D | FallbackRecentsStateController.java | 19 import static com.android.launcher3.anim.Interpolators.LINEAR; 80 buttonAlpha, LINEAR); in setProperties() local 82 MultiValueAlpha.VALUE, buttonAlpha, LINEAR); in setProperties() local 86 config.getInterpolator(ANIM_OVERVIEW_SCALE, LINEAR)); in setProperties() 88 config.getInterpolator(ANIM_OVERVIEW_TRANSLATE_X, LINEAR)); in setProperties() 91 config.getInterpolator(ANIM_OVERVIEW_MODAL, LINEAR)); in setProperties() 92 setter.setFloat(mRecentsView, FULLSCREEN_PROGRESS, state.isFullScreen() ? 1 : 0, LINEAR); in setProperties()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/ |
D | BaseRecentsViewStateController.java | 21 import static com.android.launcher3.anim.Interpolators.LINEAR; 97 config.getInterpolator(ANIM_OVERVIEW_SCALE, LINEAR)); in setStateWithAnimationInternal() 99 config.getInterpolator(ANIM_OVERVIEW_TRANSLATE_X, LINEAR)); in setStateWithAnimationInternal() 105 config.getInterpolator(ANIM_OVERVIEW_SCRIM_FADE, LINEAR)); in setStateWithAnimationInternal() 110 config.getInterpolator(ANIM_OVERVIEW_MODAL, LINEAR)); in setStateWithAnimationInternal()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/ |
D | RecentsViewStateController.java | 19 import static com.android.launcher3.anim.Interpolators.LINEAR; 80 toState.getOverviewFullscreenProgress(), LINEAR); in setStateWithAnimationInternal() 86 buttonAlpha, LINEAR); in setAlphas() local 88 MultiValueAlpha.VALUE, buttonAlpha, LINEAR); in setAlphas() local
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/ |
D | AllAppsEduView.java | 21 import static com.android.launcher3.anim.Interpolators.LINEAR; 145 intro.setInterpolator(LINEAR); in playAnimation() 148 FloatProp mCircleAlpha = new FloatProp(0, 255, 0, firstPart, LINEAR); in playAnimation() 151 FloatProp mGradientAlpha = new FloatProp(0, 255, firstPart, secondPart * 0.3f, LINEAR); in playAnimation() 168 maxAllAppsProgress, LINEAR); in playAnimation()
|
D | LiveTileOverlay.java | 4 import static com.android.launcher3.anim.Interpolators.LINEAR; 79 mIconAnimator.setDuration(ICON_ANIM_DURATION).setInterpolator(LINEAR); in startIconAnimation()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/touchcontrollers/ |
D | PortraitStatesTouchController.java | 26 import static com.android.launcher3.anim.Interpolators.LINEAR; 177 mAllAppsInterpolatorWrapper.baseInterpolator = LINEAR; in getNormalToOverviewAnimation() 258 .createSwipeDownToTaskAppAnimation(maxAccuracy, Interpolators.LINEAR); in initCurrentAnimation() 319 .setInterpolator(LINEAR); in handleFirstSwipeToOverview() 353 public TimeInterpolator baseInterpolator = LINEAR;
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/touchcontrollers/ |
D | NoButtonQuickSwitchTouchController.java | 28 import static com.android.launcher3.anim.Interpolators.LINEAR; 259 xAnim.setFloat(mRecentsView, ADJACENT_PAGE_OFFSET, scaleAndOffset[1], LINEAR); in setupOverviewAnimators() 261 toState.getOverviewScrimAlpha(mLauncher), LINEAR); in setupOverviewAnimators() local 291 mShelfPeekAnim.setShelfState(HIDE, LINEAR, 0); in onDrag() 302 mShelfPeekAnim.setShelfState(CANCEL, LINEAR, 0); in onDrag() 461 mShelfPeekAnim.setShelfState(ShelfAnimState.CANCEL, LINEAR, 0); in cancelAnimations()
|
D | QuickSwitchTouchController.java | 23 import static com.android.launcher3.anim.Interpolators.LINEAR; 129 stateAnimationConfig.setInterpolator(ANIM_WORKSPACE_TRANSLATE, LINEAR); in setupInterpolators() 130 stateAnimationConfig.setInterpolator(ANIM_VERTICAL_PROGRESS, LINEAR); in setupInterpolators()
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
D | WorkspaceStateTransitionAnimation.java | 31 import static com.android.launcher3.anim.Interpolators.LINEAR; 154 ? LINEAR in setWorkspaceProperty() 188 LINEAR); in setScrim() 190 state.hasFlag(FLAG_HAS_SYS_UI_SCRIM) ? 1 : 0, LINEAR); in setScrim()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/statehandlers/ |
D | BackButtonAlphaHandler.java | 19 import static com.android.launcher3.anim.Interpolators.LINEAR; 63 mLauncher.shouldBackButtonBeHidden(toState) ? 0 : 1, LINEAR); in setStateWithAnimation()
|
D | DepthController.java | 19 import static com.android.launcher3.anim.Interpolators.LINEAR; 204 animation.setFloat(this, DEPTH, toDepth, config.getInterpolator(ANIM_DEPTH, LINEAR)); in setStateWithAnimation()
|
/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/recyclerview/ |
D | CarUiRecyclerView.java | 109 CarUiRecyclerViewLayout.LINEAR, 118 int LINEAR = 0; field 186 a.getInt(R.styleable.CarUiRecyclerView_layoutStyle, CarUiRecyclerViewLayout.LINEAR); in init() 203 if (carUiRecyclerViewLayout == CarUiRecyclerViewLayout.LINEAR) { in init()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/ |
D | TaskViewUtils.java | 21 import static com.android.launcher3.anim.Interpolators.LINEAR; 172 out.addFloat(params, TransformParams.TARGET_ALPHA, 0, 1, clampToProgress(LINEAR, 0, 0.2f)); in createRecentsWindowAnimator() 175 out.addFloat(v, VIEW_ALPHA, 1, 0, clampToProgress(LINEAR, 0.2f, 0.4f)); in createRecentsWindowAnimator()
|
D | LauncherActivityInterface.java | 20 import static com.android.launcher3.anim.Interpolators.LINEAR; 151 fromDepthRatio, toDepthRatio, LINEAR); in prepareRecentsUI()
|
/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | AnimatorPlaybackController.java | 19 import static com.android.launcher3.anim.Interpolators.LINEAR; 83 mAnimationPlayer.setInterpolator(LINEAR); in AnimatorPlaybackController() 121 return mAnim.getInterpolator() != null ? mAnim.getInterpolator() : LINEAR; in getInterpolator()
|
D | SpringAnimationBuilder.java | 18 import static com.android.launcher3.anim.Interpolators.LINEAR; 196 animator.setDuration(getDuration()).setInterpolator(LINEAR); in build()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | AllAppsTransitionController.java | 11 import static com.android.launcher3.anim.Interpolators.LINEAR; 175 Interpolator interpolator = config.userControlled ? LINEAR : toState == OVERVIEW in setStateWithAnimation() 201 Interpolator allAppsFade = config.getInterpolator(ANIM_ALL_APPS_FADE, LINEAR); in setAlphas()
|
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/ |
D | QuickstepAppTransitionManagerImpl.java | 33 import static com.android.launcher3.anim.Interpolators.LINEAR; 366 alpha.setInterpolator(LINEAR); in getLauncherContentAnimator() 396 alpha.setInterpolator(LINEAR); in getLauncherContentAnimator() 504 appAnimator.setInterpolator(LINEAR); in getOpeningWindowAnimators() 538 alphaDuration, LINEAR); in getOpeningWindowAnimators() 756 FloatProp mAlpha = new FloatProp(1f, 0f, 25, 125, LINEAR);
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/ |
D | LauncherAppTransitionManagerImpl.java | 21 import static com.android.launcher3.anim.Interpolators.LINEAR; 119 alpha.setInterpolator(LINEAR); in composeViewContentAnimator()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/ |
D | BaseActivityInterface.java | 21 import static com.android.launcher3.anim.Interpolators.LINEAR; 404 recentsView.getMaxScaleForFullScreen(), 1, LINEAR); in createBackgroundToOverviewAnim() 405 pa.addFloat(recentsView, FULLSCREEN_PROGRESS, 1, 0, LINEAR); in createBackgroundToOverviewAnim()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/util/ |
D | StaggeredWorkspaceAnim.java | 22 import static com.android.launcher3.anim.Interpolators.LINEAR; 227 alpha.setInterpolator(LINEAR); in addStaggeredAnimationForView()
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/ |
D | ShelfScrimView.java | 24 import static com.android.launcher3.anim.Interpolators.LINEAR; 240 (float) 0, LINEAR)); in updateColors()
|
/packages/apps/Launcher3/src/com/android/launcher3/views/ |
D | ClipIconView.java | 19 import static com.android.launcher3.anim.Interpolators.LINEAR; 159 LINEAR), 0, 1); in update()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/uioverrides/states/ |
D | QuickstepAtomicAnimationFactory.java | 35 import static com.android.launcher3.anim.Interpolators.LINEAR; 127 hotseatAnim.setInterpolator(LINEAR); in createStateElementAnimation()
|
/packages/apps/Camera2/src/com/android/camera/ui/motion/ |
D | UnitCurves.java | 26 public static final UnitCurve LINEAR = new UnitBezier(0.0f, 0.0f, 1.0f, 1.0f); field in UnitCurves
|