Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithmTest.kt44 private val stackScrollAlgorithm = StackScrollAlgorithm(context, hostView) in <lambda>()
635 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
665 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
700 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
731 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
763 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
785 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
805 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
824 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
839 val algorithmState = StackScrollAlgorithm.StackScrollAlgorithmState() in <lambda>()
[all …]
DAmbientStateTest.kt40 private val sectionProvider = StackScrollAlgorithm.SectionProvider { _, _ -> false } in <lambda>()
41 private val bypassController = StackScrollAlgorithm.BypassController { false } in <lambda>()
DNotificationStackScrollLayoutTest.java255 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withDozeAmount_whenDozeChanging()
270 endHeight * StackScrollAlgorithm.START_FRACTION, in testUpdateStackHeight_withExpansionAmount_whenDozeNotChanging()
DNotificationShelfTest.kt20 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm.StackScrollAlgorithmS…
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/dagger/
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()
/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.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.java49 public class StackScrollAlgorithm { class
76 public StackScrollAlgorithm( in StackScrollAlgorithm() method in StackScrollAlgorithm
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java57 import com.android.systemui.statusbar.notification.stack.StackScrollAlgorithm;
213 public void updateState(StackScrollAlgorithm.StackScrollAlgorithmState algorithmState, in updateState()