Home
last modified time | relevance | path

Searched refs:StackScrollAlgorithm (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DStackScrollAlgorithmTest.kt44 private val stackScrollAlgorithm = StackScrollAlgorithm(context, hostView)
635 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
665 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
700 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
731 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
763 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
785 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
805 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
824 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
839 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState()
[all …]
H A DAmbientStateTest.kt40 private val sectionProvider = StackScrollAlgorithm.SectionProvider { _, _ -> false }
41 private val bypassController = StackScrollAlgorithm.BypassController { false }
H A DNotificationStackScrollLayoutTest.java255 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withDozeAmount_whenDozeChanging()
270 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
H A DNotificationShelfTest.kt20 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.StackScrollAlgorithmS…
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
H A DNotificationsModule.java70 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
98 StackScrollAlgorithm.SectionProvider bindSectionProvider(NotificationSectionsManager impl); in bindSectionProvider()
101 StackScrollAlgorithm.BypassController bindBypassController(KeyguardBypassController impl); in bindBypassController()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBypassController.kt32 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm
42 open class KeyguardBypassController : Dumpable, StackScrollAlgorithm.BypassController {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DAmbientState.java38 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.BypassController;
39 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.SectionProvider;
H A DNotificationSectionsManager.kt33 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.SectionProvider
H A DStackScrollAlgorithm.java49 public class StackScrollAlgorithm { class
76 public StackScrollAlgorithm( in StackScrollAlgorithm() method in StackScrollAlgorithm
H A DNotificationStackScrollLayout.java221 private final StackScrollAlgorithm mStackScrollAlgorithm;
1425 MathUtils.lerp(endHeight * StackScrollAlgorithm.START_FRACTION,
3457 protected StackScrollAlgorithm createStackScrollAlgorithm(Context context) { in createStackScrollAlgorithm()
3458 return new StackScrollAlgorithm(context, this); in createStackScrollAlgorithm()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShelf.java57 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
213 public void updateState(StackScrollAlgorithm.StackScrollAlgorithmState algorithmState, in updateState()