Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DAmbientStateTest.kt97 sut.pulseHeight = MAX_PULSE_HEIGHT
100 sut.pulseHeight = 0f
108 sut.pulseHeight = MAX_PULSE_HEIGHT
126 sut.pulseHeight = expected
158 sut.pulseHeight = 1f
168 sut.pulseHeight = 1f
180 sut.pulseHeight = 1f
190 sut.pulseHeight = 1f
200 sut.pulseHeight = 1f
396 pulseHeight = 0f
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DLockscreenShadeTransitionController.kt83 private var pulseHeight: Float = 0f
240 if (pulseHeight != 0f && pulseHeightAnimator?.isRunning != true) {
669 val pulseHeightAnimator = ValueAnimator.ofFloat(pulseHeight, height)
678 pulseHeight = height
717 it.println("pulseHeight: $pulseHeight")
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DAmbientState.java446 float pulseHeight = Math.min(mPulseHeight, (float) height); in getInnerHeight() local
447 return (int) MathUtils.lerp(height, pulseHeight, mDozeAmount); in getInnerHeight()
H A DNotificationStackScrollLayout.java5493 float pulseHeight = getPulseHeight(); in calculateAppearFractionBypass() local
5496 return MathUtils.smoothStep(0, totalDistance, pulseHeight); in calculateAppearFractionBypass()