Home
last modified time | relevance | path

Searched refs:endState (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/
DTransitionLayoutController.kt67 endState = state, in updateStateFromAnimation()
131 endState: TransitionViewState, in getInterpolatedState()
142 val widgetEnd = endState.widgetStates[id] ?: continue in getInterpolatedState()
233 width = MathUtils.lerp(startState.width.toFloat(), endState.width.toFloat(), in getInterpolatedState()
235 height = MathUtils.lerp(startState.height.toFloat(), endState.height.toFloat(), in getInterpolatedState()
237 translation.x = MathUtils.lerp(startState.translation.x, endState.translation.x, in getInterpolatedState()
239 translation.y = MathUtils.lerp(startState.translation.y, endState.translation.y, in getInterpolatedState()
241 alpha = MathUtils.lerp(startState.alpha, endState.alpha, progress) in getInterpolatedState()
244 endState.contentTranslation.x, in getInterpolatedState()
248 endState.contentTranslation.y, in getInterpolatedState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
DSystemStatusAnimationScheduler.kt196 val endState = if (hasPersistentDot) { in <lambda>() constant
202 ChipAnimatorAdapter(endState, scheduledEvent!!.viewCreator)) in <lambda>()
315 @SystemAnimationState val endState: Int, in <lambda>() constant in com.android.systemui.statusbar.events.SystemStatusAnimationScheduler.ChipAnimatorAdapter
320 animationState = if (endState == SHOWING_PERSISTENT_DOT && !hasPersistentDot) { in <lambda>()
323 endState in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpAppearanceController.java257 private void hide(View view, int endState) { in hide() argument
258 hide(view, endState, null); in hide()
270 private void hide(View view, int endState, Runnable callback) { in hide() argument
274 view.setVisibility(endState); in hide()
280 view.setVisibility(endState); in hide()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
DMediaViewController.kt328 val endState = state.copy().also { it.expansion = 1.0f } in <lambda>() constant
329 val endViewState = obtainViewState(endState) as TransitionViewState in <lambda>()