Home
last modified time | relevance | path

Searched refs:NotificationStackScrollLayout (Results 1 – 23 of 23) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DStackStateAnimator.java68 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 DAnimationFilter.java110 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 DNotificationStackScrollLayoutController.java27 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 DNotificationSectionsManager.kt73 private lateinit var parent: NotificationStackScrollLayout
97 fun initialize(parent: NotificationStackScrollLayout, layoutInflater: LayoutInflater) {
351 .hasActiveClearableNotifications(NotificationStackScrollLayout.ROWS_GENTLE)
H A DNotificationStackScrollLayout.java129 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 DStatusBarRemoteInputCallback.java50 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 DNotificationShadeWindowViewController.java55 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
99 private NotificationStackScrollLayout mStackScrollLayout;
H A DNotificationPanelViewController.java37 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 DStatusBar.java216 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 DNotificationStackScrollLayoutTest.java22 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 DNotificationStackScrollLayoutControllerTest.java21 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 DNotificationSectionsManagerTest.java81 @Mock private NotificationStackScrollLayout mNssl;
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/dagger/
H A DStatusBarViewModule.java43 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 DNotificationShadeWindowViewTest.java53 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
93 @Mock private NotificationStackScrollLayout mNotificationStackScrollLayout;
H A DStatusBarNotificationPresenterTest.java61 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
103 mock(NotificationStackScrollLayout.class)); in setup()
H A DNotificationPanelViewControllerTest.java123 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
156 private NotificationStackScrollLayout mNotificationStackScrollLayout;
H A DStatusBarTest.java133 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 DFooterViewButton.java25 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
H A DActivatableNotificationView.java42 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
273 float alpha = NotificationStackScrollLayout.BACKGROUND_ALPHA_DIMMED; in updateOutlineAlpha()
H A DNotificationMenuRow.java54 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
355 && !NotificationStackScrollLayout.isPinnedHeadsUp(getParent()) in onTouchMove()
H A DExpandableView.java36 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout;
H A DExpandableNotificationRow.java105 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 DLockscreenShadeTransitionControllerTest.kt19 import com.android.systemui.statusbar.notification.stack.NotificationStackScrollLayout
74 @Mock lateinit var stackscroller: NotificationStackScrollLayout