/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | StackStateAnimator.java | 68 public NotificationStackScrollLayout mHostLayout; 69 private ArrayList<NotificationStackScrollLayout.AnimationEvent> mNewEvents = 89 public StackStateAnimator(NotificationStackScrollLayout hostLayout) { in StackStateAnimator() 120 ArrayList<NotificationStackScrollLayout.AnimationEvent> mAnimationEvents, in startAnimationForEvents() 206 if (NotificationStackScrollLayout.isPinnedHeadsUp(child)) { in applyWithoutAnimation() 223 for (NotificationStackScrollLayout.AnimationEvent event : mNewEvents) { in calculateChildAnimationDelay() 338 for (NotificationStackScrollLayout.AnimationEvent event : animationEvents) { in processAnimationEvents() 399 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents() 403 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents() 416 } else if (event.animationType == NotificationStackScrollLayout in processAnimationEvents() [all …]
|
H A D | AnimationFilter.java | 110 public void applyCombination(ArrayList<NotificationStackScrollLayout.AnimationEvent> events) { in applyCombination() 114 NotificationStackScrollLayout.AnimationEvent ev = events.get(i); in applyCombination() 117 NotificationStackScrollLayout.AnimationEvent.ANIMATION_TYPE_GO_TO_FULL_SHADE) { in applyCombination()
|
H A D | NotificationStackScrollLayoutController.java | 27 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.ROWS_… 28 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.ROWS_… 29 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.ROWS_… 30 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.Selec… 31 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.canCh… 183 private NotificationStackScrollLayout mView; 566 return NotificationStackScrollLayout.canChildBeDismissed(v); 708 public void attach(NotificationStackScrollLayout view) { in attach() 1262 NotificationStackScrollLayout.matchesSelection(row, selection); in hasNotifications() 1370 public NotificationStackScrollLayout getView() { [all …]
|
H A D | NotificationSectionsManager.kt | 73 private lateinit var parent: NotificationStackScrollLayout 97 fun initialize(parent: NotificationStackScrollLayout, layoutInflater: LayoutInflater) { 351 .hasActiveClearableNotifications(NotificationStackScrollLayout.ROWS_GENTLE)
|
H A D | NotificationStackScrollLayout.java | 129 public class NotificationStackScrollLayout extends ViewGroup implements Dumpable { class 562 return NotificationStackScrollLayout.this; 569 public NotificationStackScrollLayout(Context context, AttributeSet attrs) { in NotificationStackScrollLayout() method in NotificationStackScrollLayout 6046 return NotificationStackScrollLayout.this.getChildAtRawPosition(touchX, touchY); 6083 return NotificationStackScrollLayout.this.getChildAtPosition(touchX, touchY); 6088 return NotificationStackScrollLayout.this.getChildAtRawPosition(touchX, touchY);
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarRemoteInputCallback.java | 50 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 161 if (viewParent instanceof NotificationStackScrollLayout) { in onWorkChallengeChanged() 162 final NotificationStackScrollLayout scrollLayout = in onWorkChallengeChanged() 163 (NotificationStackScrollLayout) viewParent; in onWorkChallengeChanged()
|
H A D | NotificationShadeWindowViewController.java | 55 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 99 private NotificationStackScrollLayout mStackScrollLayout;
|
H A D | NotificationPanelViewController.java | 37 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.ROWS_… 172 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 866 NotificationStackScrollLayout stackScrollLayout = mView.findViewById( in onFinishInflate() 4099 NotificationStackScrollLayout.OnOverscrollTopChangedListener { 4296 NotificationStackScrollLayout.OnEmptySpaceClickListener {
|
H A D | StatusBar.java | 216 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 3804 protected NotificationStackScrollLayout mStackScroller;
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayoutTest.java | 22 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.ROWS_… 23 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.ROWS_… 89 private NotificationStackScrollLayout mStackScroller; // Normally test this 90 private NotificationStackScrollLayout mStackScrollerInternal; // See explanation below 146 mStackScrollerInternal = new NotificationStackScrollLayout(getContext(), null); in setUp() 465 mStackScroller.clearNotifications(NotificationStackScrollLayout.ROWS_GENTLE, false); in testClearNotifications_Gentle()
|
H A D | NotificationStackScrollLayoutControllerTest.java | 21 import static com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout.ROWS_… 106 @Mock private NotificationStackScrollLayout mNotificationStackScrollLayout; 376 ArgumentCaptor<NotificationStackScrollLayout.DismissListener> in testDismissListener() 378 NotificationStackScrollLayout.DismissListener.class); in testDismissListener() 384 NotificationStackScrollLayout.DismissListener dismissListener = in testDismissListener()
|
H A D | NotificationSectionsManagerTest.java | 81 @Mock private NotificationStackScrollLayout mNssl;
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/dagger/ |
H A D | StatusBarViewModule.java | 43 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 94 public static NotificationStackScrollLayout providesNotificationStackScrollLayout( in providesNotificationStackScrollLayout() 103 NotificationStackScrollLayout notificationStackScrollLayout) { in providesNotificationShelf()
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | NotificationShadeWindowViewTest.java | 53 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 93 @Mock private NotificationStackScrollLayout mNotificationStackScrollLayout;
|
H A D | StatusBarNotificationPresenterTest.java | 61 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 103 mock(NotificationStackScrollLayout.class)); in setup()
|
H A D | NotificationPanelViewControllerTest.java | 123 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 156 private NotificationStackScrollLayout mNotificationStackScrollLayout;
|
H A D | StatusBarTest.java | 133 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 186 @Mock private NotificationStackScrollLayout mStackScroller;
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | FooterViewButton.java | 25 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
|
H A D | ActivatableNotificationView.java | 42 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 273 float alpha = NotificationStackScrollLayout.BACKGROUND_ALPHA_DIMMED; in updateOutlineAlpha()
|
H A D | NotificationMenuRow.java | 54 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 355 && !NotificationStackScrollLayout.isPinnedHeadsUp(getParent()) in onTouchMove()
|
H A D | ExpandableView.java | 36 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
|
H A D | ExpandableNotificationRow.java | 105 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout; 3285 return getParent() instanceof NotificationStackScrollLayout;
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | LockscreenShadeTransitionControllerTest.kt | 19 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout 74 @Mock lateinit var stackscroller: NotificationStackScrollLayout
|