/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | AuthPanelController.java | 99 public void updateForContentDimensions(int contentWidth, int contentHeight, in updateForContentDimensions() argument 103 + " Height: " + contentHeight in updateForContentDimensions() 131 ValueAnimator heightAnimator = ValueAnimator.ofInt(mContentHeight, contentHeight); in updateForContentDimensions() 154 mContentHeight = contentHeight; in updateForContentDimensions()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarContextView.java | 387 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom(); in onLayout() local 394 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl); in onLayout() 400 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl); in onLayout() 404 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl); in onLayout() 410 x += positionChild(mMenuView, x, y, contentHeight, !isLayoutRtl); in onLayout()
|
D | AbsActionBarView.java | 319 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { in positionChild() argument 322 int childTop = y + (contentHeight - childHeight) / 2; in positionChild()
|
D | ActionBarView.java | 1095 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()
|
D | ScrollingTabContainerView.java | 192 public void setContentHeight(int contentHeight) { in setContentHeight() argument 193 mContentHeight = contentHeight; in setContentHeight()
|
/frameworks/base/core/java/android/widget/ |
D | Magnifier.java | 1059 private void updateContentFactors(final int contentHeight, final float zoom) { in updateContentFactors() argument 1060 if (mContentHeight == contentHeight && mZoom == zoom) { in updateContentFactors() 1063 if (mContentHeight < contentHeight) { in updateContentFactors() 1066 mSurfaceControl, mContentWidth, contentHeight).apply(); in updateContentFactors() 1071 outline.setRoundRect(0, 0, mContentWidth, contentHeight, 0); in updateContentFactors() 1075 mOffsetX + mContentWidth, mOffsetY + contentHeight); in updateContentFactors() 1079 mOffsetX + mContentWidth, mOffsetY + contentHeight); in updateContentFactors() 1083 mRenderer.getRootNode().beginRecording(mContentWidth, contentHeight); in updateContentFactors() 1094 mContentHeight = contentHeight; in updateContentFactors()
|
D | ScrollView.java | 1358 final int contentHeight = getHeight() - mPaddingBottom - mPaddingTop; in computeVerticalScrollRange() local 1360 return contentHeight; in computeVerticalScrollRange() 1365 final int overscrollBottom = Math.max(0, scrollRange - contentHeight); in computeVerticalScrollRange()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/ |
D | NotificationTemplateViewWrapper.java | 306 public void setContentHeight(int contentHeight, int minHeightHint) { in setContentHeight() argument 307 super.setContentHeight(contentHeight, minHeightHint); in setContentHeight() 309 mContentHeight = contentHeight; in setContentHeight()
|
D | NotificationViewWrapper.java | 326 public void setContentHeight(int contentHeight, int minHeightHint) { in setContentHeight() argument
|
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/app/ |
D | PerfTimeline.java | 123 int contentHeight = getHeight() - paddingTop - paddingBottom; in onDraw() local
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationContentView.java | 571 public void setContentHeight(int contentHeight) { in setContentHeight() argument 572 mUnrestrictedContentHeight = Math.max(contentHeight, getMinHeight()); in setContentHeight()
|
D | ExpandableNotificationRow.java | 2726 int contentHeight = Math.max(getMinHeight(), height); 2728 l.setContentHeight(contentHeight);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 2340 int contentHeight = mContentHeight; 2342 contentHeight = mHeadsUpInset + getTopHeadsUpPinnedHeight(); 2344 int scrollRange = Math.max(0, contentHeight - mMaxLayoutHeight); 2346 scrollRange += Math.min(imeInset, Math.max(0, contentHeight - (getHeight() - imeInset)));
|