Home
last modified time | relevance | path

Searched refs:layoutEnd (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationIconContainer.java442 boolean isOverflowing(boolean isLastChild, float translationX, float layoutEnd, in isOverflowing() argument
445 return translationX + iconSize > layoutEnd; in isOverflowing()
450 return translationX + iconSize * 2f > layoutEnd; in isOverflowing()
464 float layoutEnd = getLayoutEnd(); in calculateIconXTranslations() local
486 /* isLastChild= */ i == childCount - 1, translationX, layoutEnd, mIconSize); in calculateIconXTranslations()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationChildrenContainer.java840 int layoutEnd = mContainingNotification.getActualHeight() - mClipBottomAmount;
850 if (childTop > layoutEnd) {
852 } else if (childBottom > layoutEnd) {
853 clipBottomAmount = (int) (childBottom - layoutEnd);
H A DNotificationStackScrollLayout.java4203 int layoutEnd = mMaxLayoutHeight + (int) mStackTranslation; in updateScrollPositionOnExpandInBottom() local
4208 layoutEnd -= mShelf.getIntrinsicHeight() + mPaddingBetweenElements; in updateScrollPositionOnExpandInBottom()
4210 if (endPosition > layoutEnd) { in updateScrollPositionOnExpandInBottom()
4211 setOwnScrollY((int) (mOwnScrollY + endPosition - layoutEnd)); in updateScrollPositionOnExpandInBottom()