Home
last modified time | relevance | path

Searched refs:overScrollAmount (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DSplitShadeLockScreenOverScroller.kt111 val overScrollAmount = it.animatedValue as Int regex
112 qS.setOverScrollAmount(overScrollAmount)
113 scrimController.setNotificationsOverScrollAmount(overScrollAmount)
114 nsslController.setOverScrollAmount(overScrollAmount)
/aosp14/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
H A DQS.java157 default void setOverScrollAmount(int overScrollAmount) {} in setOverScrollAmount() argument
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DScrimControllerTest.java1665 int overScrollAmount = 10; in setNotificationsOverScrollAmount_setsTranslationYOnNotificationsScrim() local
1667 mScrimController.setNotificationsOverScrollAmount(overScrollAmount); in setNotificationsOverScrollAmount_setsTranslationYOnNotificationsScrim()
1669 assertThat(mNotificationsScrim.getTranslationY()).isEqualTo(overScrollAmount); in setNotificationsOverScrollAmount_setsTranslationYOnNotificationsScrim()
1674 int overScrollAmount = 10; in setNotificationsOverScrollAmount_doesNotSetTranslationYOnBehindScrim() local
1676 mScrimController.setNotificationsOverScrollAmount(overScrollAmount); in setNotificationsOverScrollAmount_doesNotSetTranslationYOnBehindScrim()
1683 int overScrollAmount = 10; in setNotificationsOverScrollAmount_doesNotSetTranslationYOnFrontScrim() local
1685 mScrimController.setNotificationsOverScrollAmount(overScrollAmount); in setNotificationsOverScrollAmount_doesNotSetTranslationYOnFrontScrim()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFragment.java604 public void setOverScrollAmount(int overScrollAmount) { in setOverScrollAmount() argument
605 mOverScrolling = overScrollAmount != 0; in setOverScrollAmount()
608 view.setTranslationY(overScrollAmount); in setOverScrollAmount()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DScrimController.java765 public void setNotificationsOverScrollAmount(int overScrollAmount) { in setNotificationsOverScrollAmount() argument
766 if (mNotificationsScrim != null) mNotificationsScrim.setTranslationY(overScrollAmount); in setNotificationsOverScrollAmount()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java1600 public void setOverScrollAmount(int overScrollAmount) {
1601 mView.setExtraTopInsetForFullShadeTransition(overScrollAmount);