Home
last modified time | relevance | path

Searched refs:totalHeight (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DMessagingLinearLayout.java82 int totalHeight; in onMeasure() local
94 totalHeight = mPaddingTop + mPaddingBottom; in onMeasure()
104 for (int i = count - 1; i >= 0 && totalHeight < targetHeight; i--) { in onMeasure()
127 measureChildWithMargins(child, widthMeasureSpec, 0, heightMeasureSpec, totalHeight in onMeasure()
131 int newHeight = Math.max(totalHeight, totalHeight + childHeight + lp.topMargin + in onMeasure()
150 previousTotalHeight = totalHeight; in onMeasure()
152 totalHeight = newHeight; in onMeasure()
179 Math.max(getSuggestedMinimumHeight(), totalHeight)); in onMeasure() local
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/util/
DSplitBounds.java68 float totalHeight = rightBottomBounds.bottom - leftTopBounds.top; in SplitBounds() local
70 topTaskPercent = leftTopBounds.height() / totalHeight; in SplitBounds()
72 dividerHeightPercent = visualDividerBounds.height() / totalHeight; in SplitBounds()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPseudoGridView.java82 int totalHeight = 0; in onMeasure() local
101 totalHeight += maxHeight; in onMeasure()
103 totalHeight += mVerticalSpacing; in onMeasure()
107 setMeasuredDimension(width, resolveSizeAndState(totalHeight, heightMeasureSpec, 0)); in onMeasure()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsDialogMeasureAdapter.java116 int totalHeight = 0; in onMeasureInternalPortrait() local
160 totalHeight += child.getMeasuredHeight(); in onMeasureInternalPortrait()
167 totalHeight += measureDescription(description, displayHeight, width, totalHeight); in onMeasureInternalPortrait()
170 return new AuthDialog.LayoutParams(width, totalHeight); in onMeasureInternalPortrait()
DAuthBiometricView.java816 int totalHeight = 0; in onMeasureInternal() local
846 totalHeight += child.getMeasuredHeight(); in onMeasureInternal()
850 return new AuthDialog.LayoutParams(width, totalHeight); in onMeasureInternal()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/clock/
DDefaultClockController.java148 public int getPreferredY(int totalHeight) { in getPreferredY() argument
149 return totalHeight / 2; in getPreferredY()
DAnalogClockController.java162 public int getPreferredY(int totalHeight) { in getPreferredY() argument
DBubbleClockController.java162 public int getPreferredY(int totalHeight) { in getPreferredY() argument
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DClockPlugin.java82 int getPreferredY(int totalHeight); in getPreferredY() argument
/frameworks/base/core/java/android/widget/
DTableRow.java193 int heightMeasureSpec, int totalHeight) { in measureChildBeforeLayout() argument
221 lp .bottomMargin + totalHeight, lp.height); in measureChildBeforeLayout()
248 totalWidth, heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
DTabWidget.java171 int heightMeasureSpec, int totalHeight) { in measureChildBeforeLayout() argument
180 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
DTableLayout.java455 int heightMeasureSpec, int totalHeight) { in measureChildBeforeLayout() argument
463 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
DLinearLayout.java1607 int totalHeight) { in measureChildBeforeLayout() argument
1609 heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DNumPadKey.java200 int totalHeight = digitHeight + klondikeHeight; in onLayout() local
201 int top = getHeight() / 2 - totalHeight / 2; in onLayout()
/frameworks/opt/photoviewer/src/com/android/ex/photo/
DPhotoViewController.java989 final int totalHeight = mRootView.getMeasuredHeight(); in runEnterAnimation() local
1003 final float scaleY = (float) mAnimationStartHeight / totalHeight; in runEnterAnimation()
1009 totalHeight, scale); in runEnterAnimation()
1086 final int totalHeight = mRootView.getMeasuredHeight(); in runExitAnimation() local
1093 final float scaleY = (float) mAnimationStartHeight / totalHeight; in runExitAnimation()
1099 totalHeight, scale); in runExitAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DQuickSettingsController.java1313 float totalHeight = Math.max(maxQsHeight, mBarState == KEYGUARD ? stackScrollerPadding : 0) in calculatePanelHeightExpanded() local
1316 if (totalHeight > mNotificationStackScrollLayoutController.getHeight()) { in calculatePanelHeightExpanded()
1320 totalHeight = Math.max(fullyCollapsedHeight, in calculatePanelHeightExpanded()
1323 return (int) totalHeight; in calculatePanelHeightExpanded()