Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelfController.java28 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
112 public void updateState(StackScrollAlgorithm.StackScrollAlgorithmState algorithmState, in updateState()
DNotificationShelf.java56 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
205 public void updateState(StackScrollAlgorithm.StackScrollAlgorithmState algorithmState, in updateState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
DNotificationsModule.java65 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
89 StackScrollAlgorithm.SectionProvider bindSectionProvider(NotificationSectionsManager impl); in bindSectionProvider()
92 StackScrollAlgorithm.BypassController bindBypassController(KeyguardBypassController impl); in bindBypassController()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmTest.kt45 private val stackScrollAlgorithm = StackScrollAlgorithm(context, hostView) in <lambda>()
573 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
603 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
638 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
669 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
701 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
DAmbientStateTest.kt41 private val sectionProvider = StackScrollAlgorithm.SectionProvider { _, _ -> false } in <lambda>()
42 private val bypassController = StackScrollAlgorithm.BypassController { false } in <lambda>()
DNotificationShelfTest.kt19 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.StackScrollAlgorithmS…
DNotificationStackScrollLayoutTest.java245 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withDozeAmount_whenDozeChanging()
260 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardBypassController.kt32 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm in <lambda>()
42 open class KeyguardBypassController : Dumpable, StackScrollAlgorithm.BypassController { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java40 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.BypassController;
41 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.SectionProvider;
DNotificationSectionsManager.kt35 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.SectionProvider in <lambda>()
DStackScrollAlgorithm.java52 public class StackScrollAlgorithm { class
80 public StackScrollAlgorithm( in StackScrollAlgorithm() method in StackScrollAlgorithm
DNotificationStackScrollLayout.java220 private final StackScrollAlgorithm mStackScrollAlgorithm;
1432 MathUtils.lerp(endHeight * StackScrollAlgorithm.START_FRACTION,
3548 protected StackScrollAlgorithm createStackScrollAlgorithm(Context context) { in createStackScrollAlgorithm()
3549 StackScrollAlgorithm stackScrollAlgorithm = new StackScrollAlgorithm(context, this); in createStackScrollAlgorithm()