Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmKosmos.kt25 mock<StackScrollAlgorithm.SectionProvider>() in <lambda>()
29 mock<StackScrollAlgorithm.BypassController>() in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmTest.kt55 private val stackScrollAlgorithm = StackScrollAlgorithm(context, hostView) in <lambda>()
826 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
853 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
885 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
913 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
942 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
964 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
984 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
1003 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
1018 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
[all …]
DAmbientStateTest.kt41 private val sectionProvider = StackScrollAlgorithm.SectionProvider { _, _ -> false } in <lambda>()
42 private val bypassController = StackScrollAlgorithm.BypassController { false } in <lambda>()
DNotificationShelfTest.kt23 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.StackScrollAlgorithmS…
DNotificationStackScrollLayoutTest.java256 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
DNotificationsModule.java85 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
119 StackScrollAlgorithm.SectionProvider bindSectionProvider(NotificationSectionsManager impl); in bindSectionProvider()
122 StackScrollAlgorithm.BypassController bindBypassController(KeyguardBypassController impl); in bindBypassController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBypassController.kt37 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm in <lambda>()
64 ) : Dumpable, StackScrollAlgorithm.BypassController { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java38 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.BypassController;
39 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.SectionProvider;
DNotificationSectionsManager.kt33 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.SectionProvider in <lambda>()
DStackScrollAlgorithm.java52 public class StackScrollAlgorithm { class
81 public StackScrollAlgorithm( in StackScrollAlgorithm() method in StackScrollAlgorithm
DNotificationStackScrollLayout.java225 private final StackScrollAlgorithm mStackScrollAlgorithm;
1485 MathUtils.lerp(endHeight * StackScrollAlgorithm.START_FRACTION,
3425 protected StackScrollAlgorithm createStackScrollAlgorithm(Context context) { in createStackScrollAlgorithm()
3426 return new StackScrollAlgorithm(context, this); in createStackScrollAlgorithm()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java56 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
202 public void updateState(StackScrollAlgorithm.StackScrollAlgorithmState algorithmState, in updateState()