/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRowTest.java | 109 ExpandableNotificationRow row = mNotificationTestHelper.createRow(); in testCanShowHeadsUp_notOnKeyguard_true() 286 private void measureAndLayout(ExpandableNotificationRow row) { in measureAndLayout() 406 ExpandableNotificationRow.LongPressListener listener = in testSetDismissed_longPressListenerRemoved() 407 mock(ExpandableNotificationRow.LongPressListener.class); in testSetDismissed_longPressListenerRemoved() 456 ExpandableNotificationRow.CoordinateOnClickListener l = mock( in testFeedbackOnClick() 494 List<ExpandableNotificationRow> childRows = in testGetNumUniqueChildren_multiChannel() 498 for (ExpandableNotificationRow childRow : childRows) { in testGetNumUniqueChildren_multiChannel() 534 ExpandableNotificationRow row = in testGetIsNonblockable() 550 ExpandableNotificationRow row = in testCanDismiss() 561 ExpandableNotificationRow row = in testCannotDismiss() [all …]
|
H A D | NotificationTestHelper.java | 126 private ExpandableNotificationRow mRow; 227 public ExpandableNotificationRow createRowWithRoundness( in createRowWithRoundness() 232 ExpandableNotificationRow row = createRow(); in createRowWithRoundness() 319 public ExpandableNotificationRow createBubble() in createBubble() 336 public ExpandableNotificationRow createStickyRow() in createStickyRow() 368 public ExpandableNotificationRow createBubbleInGroup() in createBubbleInGroup() 455 private ExpandableNotificationRow createRow( in createRow() 527 private ExpandableNotificationRow generateRow( in generateRow() 538 private ExpandableNotificationRow generateRow( in generateRow() 568 private ExpandableNotificationRow generateRow( in generateRow() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
H A D | AboveShelfObserverTest.java | 29 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 56 ExpandableNotificationRow row = mNotificationTestHelper.createRow(); in setUp() 67 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingAbove() 75 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testObserverChangesWhenGoingBelow() 84 ExpandableNotificationRow row = (ExpandableNotificationRow) mHostLayout.getChildAt(0); in testStaysAboveWhenOneGoesAway() 86 row = (ExpandableNotificationRow) mHostLayout.getChildAt(1); in testStaysAboveWhenOneGoesAway()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayout.java | 1121 ExpandableNotificationRow row = (ExpandableNotificationRow) view; in getSpeedBumpIndex() 1692 ExpandableNotificationRow row = (ExpandableNotificationRow) v; 1700 ExpandableNotificationRow row = (ExpandableNotificationRow) v; 2827 ExpandableNotificationRow row = (ExpandableNotificationRow) view; in focusNextViewIfFocused() 3053 ExpandableNotificationRow row = (ExpandableNotificationRow) child; in onViewAddedInternal() 3127 ExpandableNotificationRow row = (ExpandableNotificationRow) child; in updateAnimationState() 4152 ExpandableNotificationRow row = (ExpandableNotificationRow) child; in updateChronometerForChild() 4192 ExpandableNotificationRow row = (ExpandableNotificationRow) view; in updateScrollPositionOnExpandInBottom() 5234 ExpandableNotificationRow row = (ExpandableNotificationRow) view; in shouldHideParent() 6211 ExpandableNotificationRow row = (ExpandableNotificationRow) v; [all …]
|
H A D | NotificationChildrenContainer.java | 98 private ExpandableNotificationRow mContainingNotification; 355 public void removeNotification(ExpandableNotificationRow row) { 520 public List<ExpandableNotificationRow> getAttachedChildren() { 754 ExpandableNotificationRow child, 872 if (child instanceof ExpandableNotificationRow) { 873 ExpandableNotificationRow notificationRow = (ExpandableNotificationRow) child; 976 public ExpandableNotificationRow getViewAtPosition(float y) { 1010 public ExpandableNotificationRow getContainingNotification() { 1498 for (ExpandableNotificationRow child : mAttachedChildren) { 1525 ((ExpandableNotificationRow) view).getEntry(), [all …]
|
H A D | StackScrollAlgorithm.java | 224 if (view instanceof ExpandableNotificationRow) { in logView() 225 ExpandableNotificationRow row = ((ExpandableNotificationRow) view); in logView() 259 if (v instanceof ExpandableNotificationRow) { in getNotificationChildrenStates() 260 ExpandableNotificationRow row = (ExpandableNotificationRow) v; in getNotificationChildrenStates() 371 if (v instanceof ExpandableNotificationRow) { in initAlgorithmState() 372 ExpandableNotificationRow row = (ExpandableNotificationRow) v; in initAlgorithmState() 506 final ExpandableNotificationRow row = (ExpandableNotificationRow) child; in hasNonClearableNotifs() 706 ExpandableNotificationRow pulsingRow = null; in updatePulsingStates() 712 ExpandableNotificationRow row = (ExpandableNotificationRow) child; in updatePulsingStates() 751 ExpandableNotificationRow topHeadsUpEntry = null; in updateHeadsUpStates() [all …]
|
H A D | StackStateAnimator.java | 30 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 350 if (changingView instanceof ExpandableNotificationRow && mLogger != null) { in processAnimationEvents() 352 isHeadsUp = ((ExpandableNotificationRow) changingView).isHeadsUp(); in processAnimationEvents() 354 key = ((ExpandableNotificationRow) changingView).getEntry().getKey(); in processAnimationEvents() 384 if (changingView instanceof ExpandableNotificationRow in processAnimationEvents() 386 ExpandableNotificationRow changingRow = in processAnimationEvents() 387 (ExpandableNotificationRow) changingView; in processAnimationEvents() 388 ExpandableNotificationRow nextRow = in processAnimationEvents() 436 ExpandableNotificationRow row = (ExpandableNotificationRow) event.mChangingView; in processAnimationEvents() 476 if (changingView instanceof ExpandableNotificationRow) { in processAnimationEvents() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | NotificationClicker.java | 27 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 46 private ExpandableNotificationRow.OnDragSuccessListener mOnDragSuccessListener = 47 new ExpandableNotificationRow.OnDragSuccessListener() { 67 if (!(v instanceof ExpandableNotificationRow)) { in onClick() 74 final ExpandableNotificationRow row = (ExpandableNotificationRow) v; in onClick() 109 private boolean isMenuVisible(ExpandableNotificationRow row) { in isMenuVisible() 116 public void register(ExpandableNotificationRow row, StatusBarNotification sbn) { in register()
|
H A D | NotificationActivityStarter.java | 23 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 31 void onNotificationClicked(NotificationEntry entry, ExpandableNotificationRow row); in onNotificationClicked() 35 ExpandableNotificationRow row); in startNotificationGutsIntent()
|
H A D | AboveShelfObserver.java | 23 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 49 if (child instanceof ExpandableNotificationRow) { in onAboveShelfStateChanged() 50 if (((ExpandableNotificationRow) child).isAboveShelf()) { in onAboveShelfStateChanged()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableNotificationRowController.java | 82 private final ExpandableNotificationRow mView; 97 private final ExpandableNotificationRow.OnExpandClickListener mOnExpandClickListener; 133 new ExpandableNotificationRow.ExpandableNotificationRowLogger() { 200 ExpandableNotificationRow view, in ExpandableNotificationRowController() 219 ExpandableNotificationRow.OnExpandClickListener onExpandClickListener, in ExpandableNotificationRowController() 367 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in addChildAt() 369 mView.addChildNotification((ExpandableNotificationRow) child.getView(), index); in addChildAt() 376 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in moveChildTo() 385 ExpandableNotificationRow childView = (ExpandableNotificationRow) child.getView(); in removeChild() 410 final List<ExpandableNotificationRow> mChildren = mView.getAttachedChildren(); in getChildCount() [all …]
|
H A D | NotificationGutsManager.java | 216 ExpandableNotificationRow row) { in startAppDetailsSettingsActivity() 225 ExpandableNotificationRow row) { in startAppOpsSettingsActivity() 246 private boolean bindGuts(final ExpandableNotificationRow row) { in bindGuts() 252 protected boolean bindGuts(final ExpandableNotificationRow row, in bindGuts() 303 final ExpandableNotificationRow row, in initializeSnoozeView() 323 final ExpandableNotificationRow row, in initializeFeedbackInfo() 343 final ExpandableNotificationRow row, in initializeNotificationInfo() 397 final ExpandableNotificationRow row, in initializePartialConversationNotificationInfo() 438 final ExpandableNotificationRow row, in initializeConversationNotificationInfo() 588 if (!(view instanceof ExpandableNotificationRow)) { in openGutsInternal() [all …]
|
H A D | ExpandableNotificationRow.java | 275 private ExpandableNotificationRow mNotificationParent; 892 for (ExpandableNotificationRow child : clonedList) { 925 public ExpandableNotificationRow getNotificationParent() { 3565 if (view instanceof ExpandableNotificationRow) { 3566 ExpandableNotificationRow row = (ExpandableNotificationRow) view; 3586 if (view instanceof ExpandableNotificationRow) { 3587 ExpandableNotificationRow row = (ExpandableNotificationRow) view; 3596 if (child instanceof ExpandableNotificationRow) { 3597 ExpandableNotificationRow row = (ExpandableNotificationRow) child; 3812 if (view instanceof ExpandableNotificationRow) { [all …]
|
H A D | NotificationRowContentBinder.java | 46 @NonNull ExpandableNotificationRow row, in bindContent() 61 @NonNull ExpandableNotificationRow row); in cancelBind() 72 @NonNull ExpandableNotificationRow row, in unbindContent()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | NotificationGroupingUtil.java | 57 public Object extractData(ExpandableNotificationRow row) { 85 private final ExpandableNotificationRow mRow; 89 public NotificationGroupingUtil(ExpandableNotificationRow row) { in NotificationGroupingUtil() 139 ExpandableNotificationRow row = notificationChildren.get(i); in updateChildrenAppearance() 147 ExpandableNotificationRow row = notificationChildren.get(i); in updateChildrenAppearance() 156 private void sanitizeTopLineViews(ExpandableNotificationRow row) { in sanitizeTopLineViews() 224 public void restoreChildNotification(ExpandableNotificationRow row) { in restoreChildNotification() 236 private final ExpandableNotificationRow mParentRow; 261 public void compareToGroupParent(ExpandableNotificationRow row) { in compareToGroupParent() 280 public void apply(ExpandableNotificationRow row) { in apply() [all …]
|
H A D | NotificationPresenter.java | 18 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 27 public interface NotificationPresenter extends ExpandableNotificationRow.OnExpandClickListener { 48 void onBindRow(ExpandableNotificationRow row); in onBindRow()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | SwipeHelper.java | 119 if (mTouchedView instanceof ExpandableNotificationRow) { 199 if (view instanceof ExpandableNotificationRow) { in getViewTranslationAnimator() 306 if (mTouchedView instanceof ExpandableNotificationRow) { in onInterceptTouchEvent() 482 if (animView instanceof ExpandableNotificationRow) { in dismissChild() 483 ExpandableNotificationRow row = (ExpandableNotificationRow) animView; in dismissChild() 557 if (target instanceof ExpandableNotificationRow) { in createSnapBackAnimation() 569 if (animView instanceof ExpandableNotificationRow) { in cancelTranslateAnimation() 682 ((ExpandableNotificationRow) mTouchedView) in onTouchEvent() 864 if (v instanceof ExpandableNotificationRow) { in isAvailableToDragAndDrop() 865 ExpandableNotificationRow enr = (ExpandableNotificationRow) v; in isAvailableToDragAndDrop() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | HeadsUpTouchHelper.java | 25 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 43 private ExpandableNotificationRow mPickedChild; 79 if (child instanceof ExpandableNotificationRow) { in onInterceptTouchEvent() 80 ExpandableNotificationRow pickedChild = (ExpandableNotificationRow) child; in onInterceptTouchEvent() 190 void setTrackedHeadsUp(ExpandableNotificationRow expandableNotificationRow);
|
H A D | LSShadeTransitionLogger.kt | 25 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow 37 val entry = (startingChild as? ExpandableNotificationRow)?.entry 52 val entry = (startingChild as? ExpandableNotificationRow)?.entry 61 val entry = (startingChild as? ExpandableNotificationRow)?.entry 70 val entry = (startingChild as? ExpandableNotificationRow)?.entry
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
H A D | HeadsUpUtil.java | 26 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 74 if (!(view instanceof ExpandableNotificationRow)) { in getViewKey() 78 final ExpandableNotificationRow row = (ExpandableNotificationRow) view; in getViewKey()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/dagger/ |
H A D | ExpandableNotificationRowComponent.java | 26 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 56 Builder expandableNotificationRow(ExpandableNotificationRow view); in expandableNotificationRow() 60 Builder onExpandClickListener(ExpandableNotificationRow.OnExpandClickListener presenter); in onExpandClickListener() 78 abstract ActivatableNotificationView bindExpandableView(ExpandableNotificationRow view); in bindExpandableView()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/ |
H A D | NotificationMediaTemplateViewWrapper.java | 23 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 33 ExpandableNotificationRow row) { in NotificationMediaTemplateViewWrapper() 42 public void onContentUpdated(ExpandableNotificationRow row) { in onContentUpdated()
|
H A D | NotificationBigTextTemplateViewWrapper.java | 25 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 35 ExpandableNotificationRow row) { in NotificationBigTextTemplateViewWrapper() 44 public void onContentUpdated(ExpandableNotificationRow row) { in onContentUpdated()
|
H A D | NotificationDecoratedCustomViewWrapper.java | 24 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow; 58 ExpandableNotificationRow row) { in NotificationDecoratedCustomViewWrapper() 63 public void onContentUpdated(ExpandableNotificationRow row) { in onContentUpdated()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
H A D | ShadeViewControllerEmptyImpl.kt | 22 import com.android.systemui.statusbar.notification.row.ExpandableNotificationRow 96 override fun addTrackingHeadsUpListener(listener: Consumer<ExpandableNotificationRow>) {} 97 override fun removeTrackingHeadsUpListener(listener: Consumer<ExpandableNotificationRow>) {} 101 override val trackedHeadsUpNotification: ExpandableNotificationRow? = null
|