/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationRoundnessManager.java | 26 import com.android.systemui.statusbar.notification.row.ExpandableView; 43 private HashSet<ExpandableView> mAnimatedChildren; 47 private ExpandableView mSwipedView = null; 63 public boolean isViewAffectedBySwipe(ExpandableView expandableView) { in isViewAffectedBySwipe() 72 ExpandableView viewSwiped, in setViewsAffectedBySwipe() 125 public void setAnimatedChildren(HashSet<ExpandableView> animatedChildren) { in setAnimatedChildren() 134 public boolean isAnimatedChild(ExpandableView view) { in isAnimatedChild()
|
H A D | NotificationListContainer.java | 31 import com.android.systemui.statusbar.notification.row.ExpandableView; 38 ExpandableView.OnHeightChangedListener, 53 void changeViewPosition(ExpandableView child, int newIndex); in changeViewPosition() 60 void notifyGroupChildAdded(ExpandableView row); in notifyGroupChildAdded() 67 void notifyGroupChildRemoved(ExpandableView row, ViewGroup childrenContainer); in notifyGroupChildRemoved() 74 void generateAddAnimation(ExpandableView child, boolean fromMoreCard); in generateAddAnimation()
|
H A D | NotificationSection.java | 30 import com.android.systemui.statusbar.notification.row.ExpandableView; 45 private ExpandableView mFirstVisibleChild; 46 private ExpandableView mLastVisibleChild; 198 public ExpandableView getFirstVisibleChild() { in getFirstVisibleChild() 202 public ExpandableView getLastVisibleChild() { in getLastVisibleChild() 206 public boolean setFirstVisibleChild(ExpandableView child) { in setFirstVisibleChild() 212 public boolean setLastVisibleChild(ExpandableView child) { in setLastVisibleChild() 251 ExpandableView firstView = getFirstVisibleChild(); in updateBounds() 275 ExpandableView lastView = getLastVisibleChild(); in updateBounds()
|
H A D | NotificationStackScrollLayout.java | 1282 ExpandableView expandableView = (ExpandableView) mForcedScroll; 1784 ExpandableView expandableView = (ExpandableView) v; 2371 ExpandableView previous, 2372 ExpandableView current, 2726 ExpandableView expandableView = (ExpandableView) child; in onViewRemoved() 2962 ExpandableView expandableView = (ExpandableView) view; in getIntrinsicHeight() 4371 ExpandableView previous = null; in updateViewShadows() 4950 public ExpandableView getShelf() { in getShelf() 5143 ExpandableView child = (ExpandableView) getTransientView(i); in dump() 5149 ExpandableView expandableView = (ExpandableView) swipedView; in dump() [all …]
|
H A D | StackStateAnimator.java | 31 import com.android.systemui.statusbar.notification.row.ExpandableView; 86 private ArrayList<ExpandableView> mTransientViewsToRemove = new ArrayList<>(); 139 final ExpandableView child = (ExpandableView) mHostLayout.getChildAt(i); in startAnimationForEvents() 163 private void initAnimationProperties(ExpandableView child, in initAnimationProperties() 180 private void adaptDurationWhenGoingToFullShade(ExpandableView child, in adaptDurationWhenGoingToFullShade() 201 private boolean applyWithoutAnimation(ExpandableView child, ExpandableViewState viewState) { in applyWithoutAnimation() 249 ExpandableView viewAfterChangingView = noNextView in calculateChildAnimationDelay() 251 : (ExpandableView) event.viewAfterChangingView; in calculateChildAnimationDelay() 331 for (ExpandableView transientViewToRemove : mTransientViewsToRemove) { in onAnimationFinished() 345 final ExpandableView changingView = (ExpandableView) event.mChangingView; in processAnimationEvents() [all …]
|
H A D | NotificationStackSizeCalculator.kt | 31 import com.android.systemui.statusbar.notification.row.ExpandableView 318 var previous: ExpandableView? = null 375 private val NotificationStackScrollLayout.childrenSequence: Sequence<ExpandableView> 376 get() = children.map { it as ExpandableView } 386 view: ExpandableView, 388 previousView: ExpandableView?, 427 private fun ExpandableView.isShowable(onLockscreen: Boolean): Boolean { regex 445 previous: ExpandableView?, 446 current: ExpandableView?, 464 private fun ExpandableView.canShowViewOnLockscreen(): Boolean { regex
|
H A D | StackScrollAlgorithm.java | 38 import com.android.systemui.statusbar.notification.row.ExpandableView; 135 for (ExpandableView view : algorithmState.visibleChildren) { in updateAlphaState() 250 ExpandableView child = (ExpandableView) mHostView.getChildAt(i); in resetChildViewStates() 258 ExpandableView v = algorithmState.visibleChildren.get(i); in getNotificationChildrenStates() 365 ExpandableView v = (ExpandableView) mHostView.getChildAt(i); in initAlgorithmState() 400 final ExpandableView view = state.visibleChildren.get(i); in initAlgorithmState() 427 ExpandableView v) { in updateNotGoneIndex() 542 ExpandableView view = algorithmState.visibleChildren.get(i); 887 if (child instanceof ExpandableView) { in getMaxAllowedChildHeight() 888 ExpandableView expandableView = (ExpandableView) child; in getMaxAllowedChildHeight() [all …]
|
H A D | ExpandableViewState.java | 28 import com.android.systemui.statusbar.notification.row.ExpandableView; 146 if (view instanceof ExpandableView) { in applyToView() 147 ExpandableView expandableView = (ExpandableView) view; in applyToView() 189 if (!(child instanceof ExpandableView)) { in animateTo() 192 ExpandableView expandableView = (ExpandableView) child; in animateTo() 241 private void startHeightAnimation(final ExpandableView child, AnimationProperties properties) { in startHeightAnimation() 323 private void startClipAnimation(final ExpandableView child, AnimationProperties properties, in startClipAnimation() 401 public static int getFinalActualHeight(ExpandableView view) { in getFinalActualHeight()
|
H A D | NotificationSectionsManager.kt | 32 import com.android.systemui.statusbar.notification.row.ExpandableView 131 val first: ExpandableView, 132 val last: ExpandableView 135 data class One(val lone: ExpandableView) : SectionBounds() 138 fun addNotif(notif: ExpandableView): SectionBounds = when (this) { 151 first: ExpandableView?, 152 last: ExpandableView? 167 children: List<ExpandableView>
|
H A D | AmbientState.java | 37 import com.android.systemui.statusbar.notification.row.ExpandableView; 81 private ExpandableView mLastVisibleBackgroundChild; 504 ExpandableView lastVisibleBackgroundChild) { in setLastVisibleBackgroundChild() 508 public ExpandableView getLastVisibleBackgroundChild() { in getLastVisibleBackgroundChild() 579 public boolean isPulsingRow(ExpandableView row) { in isPulsingRow() 613 public boolean isDozingAndNotPulsing(ExpandableView view) { in isDozingAndNotPulsing()
|
H A D | MediaContainerView.kt | 26 import com.android.systemui.statusbar.notification.row.ExpandableView 31 class MediaContainerView(context: Context, attrs: AttributeSet?) : ExpandableView(context, attrs) {
|
H A D | NotificationTargetsHelper.kt | 9 import com.android.systemui.statusbar.notification.row.ExpandableView 43 .filterIsInstance<ExpandableView>()
|
H A D | NotificationStackScrollLayoutController.java | 114 import com.android.systemui.statusbar.notification.row.ExpandableView; 943 ExpandableView.OnHeightChangedListener listener) { in setOnHeightChangedListener() 997 public ExpandableView getChildAtRawPosition(float x, float y) { in getChildAtRawPosition() 1055 public ExpandableView getChildAt(int i) { in getChildAt() 1056 return (ExpandableView) mView.getChildAt(i); in getChildAt() 1442 public ExpandableView getFirstChildNotGone() { 1466 public int getPositionInLinearLayout(ExpandableView row) { 1474 public float calculateGapHeight(ExpandableView previousView, ExpandableView child, int count) { 1659 ExpandableView shelf = mView.getShelf(); 1722 public void notifyGroupChildAdded(ExpandableView row) { [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | NotificationShelf.java | 50 import com.android.systemui.statusbar.notification.row.ExpandableView; 405 ExpandableView child = getHostLayoutChildAt(i); in updateAppearance() 509 private ExpandableView getHostLayoutChildAt(int index) { 605 if (transientView instanceof ExpandableView) { 606 ExpandableView transientExpandableView = (ExpandableView) transientView; 692 private int updateNotificationClipHeight(ExpandableView view, 741 ExpandableView view, 826 ExpandableView view, in updateIconPositioning() 858 private boolean isTargetClipped(ExpandableView view) { in isTargetClipped() 1052 public void requestRoundnessResetFor(ExpandableView child) { in requestRoundnessResetFor() [all …]
|
H A D | PulseExpansionHandler.kt | 44 import com.android.systemui.statusbar.notification.row.ExpandableView 107 private var mStartingChild: ExpandableView? = null 288 child: ExpandableView, 310 private fun setUserLocked(child: ExpandableView, userLocked: Boolean) { 329 private fun findView(x: Float, y: Float): ExpandableView? {
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationShelfTest.kt | 19 import com.android.systemui.statusbar.notification.row.ExpandableView 200 val expandableView = mock(ExpandableView::class.java) 227 val expandableView = mock(ExpandableView::class.java) 254 val expandableView = mock(ExpandableView::class.java) 281 val expandableView = mock(ExpandableView::class.java) 371 val lastVisibleBackgroundChild = mock<ExpandableView>() 398 val lastVisibleBackgroundChild = mock<ExpandableView>() 424 val lastVisibleBackgroundChild = mock<ExpandableView>() 452 val lastVisibleBackgroundChild = mock<ExpandableView>() 458 val ssaVisibleChild = mock<ExpandableView>() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | ExpandableViewController.java | 25 private final ExpandableView mView; 28 public ExpandableViewController(ExpandableView view) { in ExpandableViewController()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | ExpandHelper.java | 42 import com.android.systemui.statusbar.notification.row.ExpandableView; 48 ExpandableView getChildAtRawPosition(float x, float y); in getChildAtRawPosition() 49 ExpandableView getChildAtPosition(float x, float y); in getChildAtPosition() 54 int getMaxExpandHeight(ExpandableView view); in getMaxExpandHeight() 117 private ExpandableView mResizedView; 160 ExpandableView mView; 163 public void setView(ExpandableView v) { in setView() 233 private ExpandableView findView(float x, float y) { in findView() 234 ExpandableView v; in findView() 424 private boolean isFullyExpanded(ExpandableView underFocus) { in isFullyExpanded() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ui/viewbinder/ |
H A D | ExpandableViewBinder.kt | 3 import com.android.systemui.statusbar.notification.row.ExpandableView 7 fun bind(viewModel: ViewModel, view: ExpandableView) {}
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/dagger/ |
H A D | ActivatableNotificationViewModule.java | 21 import com.android.systemui.statusbar.notification.row.ExpandableView; 33 ExpandableView bindExpandableView(ActivatableNotificationView view); in bindExpandableView()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
H A D | LSShadeTransitionLoggerTest.kt | 8 import com.android.systemui.statusbar.notification.row.ExpandableView 40 val view: ExpandableView = mock()
|
H A D | DragDownHelperTest.kt | 27 import com.android.systemui.statusbar.notification.row.ExpandableView 49 private val expandableView: ExpandableView = mock()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/ |
H A D | NotificationRoundnessLogger.kt | 23 import com.android.systemui.statusbar.notification.row.ExpandableView 34 view: ExpandableView?,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | HeadsUpTouchHelper.java | 26 import com.android.systemui.statusbar.notification.row.ExpandableView; 77 ExpandableView child = mCallback.getChildAtRawPosition(x, y); in onInterceptTouchEvent() 179 ExpandableView getChildAtRawPosition(float touchX, float touchY);
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
H A D | RootNodeController.kt | 23 import com.android.systemui.statusbar.notification.row.ExpandableView 54 listContainer.changeViewPosition(child.view as ExpandableView, index)
|