/frameworks/base/core/java/com/android/internal/widget/ |
D | MessagingLinearLayout.java | 82 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/ |
D | SplitBounds.java | 68 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/ |
D | PseudoGridView.java | 82 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/ |
D | UdfpsDialogMeasureAdapter.java | 116 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()
|
D | AuthBiometricView.java | 816 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/ |
D | DefaultClockController.java | 148 public int getPreferredY(int totalHeight) { in getPreferredY() argument 149 return totalHeight / 2; in getPreferredY()
|
D | AnalogClockController.java | 162 public int getPreferredY(int totalHeight) { in getPreferredY() argument
|
D | BubbleClockController.java | 162 public int getPreferredY(int totalHeight) { in getPreferredY() argument
|
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/ |
D | ClockPlugin.java | 82 int getPreferredY(int totalHeight); in getPreferredY() argument
|
/frameworks/base/core/java/android/widget/ |
D | TableRow.java | 193 int heightMeasureSpec, int totalHeight) { in measureChildBeforeLayout() argument 221 lp .bottomMargin + totalHeight, lp.height); in measureChildBeforeLayout() 248 totalWidth, heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
|
D | TabWidget.java | 171 int heightMeasureSpec, int totalHeight) { in measureChildBeforeLayout() argument 180 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
|
D | TableLayout.java | 455 int heightMeasureSpec, int totalHeight) { in measureChildBeforeLayout() argument 463 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
|
D | LinearLayout.java | 1607 int totalHeight) { in measureChildBeforeLayout() argument 1609 heightMeasureSpec, totalHeight); in measureChildBeforeLayout()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | NumPadKey.java | 200 int totalHeight = digitHeight + klondikeHeight; in onLayout() local 201 int top = getHeight() / 2 - totalHeight / 2; in onLayout()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
D | PhotoViewController.java | 989 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/ |
D | QuickSettingsController.java | 1313 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()
|