Home
last modified time | relevance | path

Searched refs:contentHeight (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthPanelController.java138 public void updateForContentDimensions(int contentWidth, int contentHeight, in updateForContentDimensions() argument
142 + " Height: " + contentHeight in updateForContentDimensions()
170 ValueAnimator heightAnimator = ValueAnimator.ofInt(mContentHeight, contentHeight); in updateForContentDimensions()
193 mContentHeight = contentHeight; in updateForContentDimensions()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarContextView.java388 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local
395 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl); in onLayout()
401 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl); in onLayout()
405 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl); in onLayout()
411 x += positionChild(mMenuView, x, y, contentHeight, !isLayoutRtl); in onLayout()
DAbsActionBarView.java320 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { in positionChild() argument
323 int childTop = y + (contentHeight - childHeight) / 2; in positionChild()
DActionBarView.java1095 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local
1097 if (contentHeight <= 0) { in onLayout()
1124 next(x, startOffset, isLayoutRtl), y, contentHeight, isLayoutRtl); in onLayout()
1136 x += positionChild(mListNavLayout, x, y, contentHeight, isLayoutRtl); in onLayout()
1143 x += positionChild(mTabScrollView, x, y, contentHeight, isLayoutRtl); in onLayout()
1151 positionChild(mMenuView, menuStart, y, contentHeight, !isLayoutRtl); in onLayout()
1157 positionChild(mIndeterminateProgressView, menuStart, y, contentHeight, !isLayoutRtl); in onLayout()
DScrollingTabContainerView.java193 public void setContentHeight(int contentHeight) { in setContentHeight() argument
194 mContentHeight = contentHeight; in setContentHeight()
/frameworks/base/core/java/android/widget/
DMagnifier.java1079 private void updateContentFactors(final int contentHeight, final float zoom) { in updateContentFactors() argument
1080 if (mContentHeight == contentHeight && mZoom == zoom) { in updateContentFactors()
1083 if (mContentHeight < contentHeight) { in updateContentFactors()
1085 mBBQ.update(mBbqSurfaceControl, mContentWidth, contentHeight, in updateContentFactors()
1090 outline.setRoundRect(0, 0, mContentWidth, contentHeight, 0); in updateContentFactors()
1094 mOffsetX + mContentWidth, mOffsetY + contentHeight); in updateContentFactors()
1098 mOffsetX + mContentWidth, mOffsetY + contentHeight); in updateContentFactors()
1102 mRenderer.getRootNode().beginRecording(mContentWidth, contentHeight); in updateContentFactors()
1113 mContentHeight = contentHeight; in updateContentFactors()
DScrollView.java1387 final int contentHeight = getHeight() - mPaddingBottom - mPaddingTop; in computeVerticalScrollRange() local
1389 return contentHeight; in computeVerticalScrollRange()
1394 final int overscrollBottom = Math.max(0, scrollRange - contentHeight); in computeVerticalScrollRange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationTemplateViewWrapper.java310 public void setContentHeight(int contentHeight, int minHeightHint) { in setContentHeight() argument
311 super.setContentHeight(contentHeight, minHeightHint); in setContentHeight()
313 mContentHeight = contentHeight; in setContentHeight()
DNotificationViewWrapper.java337 public void setContentHeight(int contentHeight, int minHeightHint) { in setContentHeight() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java401 public void setContentHeight(int contentHeight) { in setContentHeight() argument
402 mContentHeight = contentHeight; in setContentHeight()
DNotificationStackScrollLayout.java2068 int contentHeight = mContentHeight;
2070 contentHeight = mHeadsUpInset + getTopHeadsUpPinnedHeight();
2072 int scrollRange = Math.max(0, contentHeight - mMaxLayoutHeight);
2074 scrollRange += Math.min(imeInset, Math.max(0, contentHeight - (getHeight() - imeInset)));
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/
DPerfTimeline.java123 int contentHeight = getHeight() - paddingTop - paddingBottom; in onDraw() local
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java532 public void setContentHeight(int contentHeight) { in setContentHeight() argument
533 mUnrestrictedContentHeight = Math.max(contentHeight, getMinHeight()); in setContentHeight()
DExpandableNotificationRow.java2754 int contentHeight = Math.max(getMinHeight(), height);
2756 l.setContentHeight(contentHeight);
/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
DPeopleTileViewHelper.java360 int contentHeight = getContentHeightForLayout(nameHeight, isStatusLayout); in setMaxLines() local
362 int maxAdaptiveLines = Math.floorDiv(contentHeight, lineHeight); in setMaxLines()