Searched refs:measuredHeight (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintDialogFrame.java54 int measuredHeight = getMeasuredHeight();
58 measuredHeight = mHeight;
63 measuredHeight = Math.min(mHeight, receivedHeight);
67 setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContextView.java361 int measuredHeight = 0;
366 if (paddedViewHeight > measuredHeight) {
367 measuredHeight = paddedViewHeight;
370 setMeasuredDimension(contentWidth, measuredHeight);
H A DActionBarView.java989 int measuredHeight = 0;
993 if (paddedViewHeight > measuredHeight) {
994 measuredHeight = paddedViewHeight;
997 setMeasuredDimension(contentWidth, measuredHeight);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java387 int measuredHeight = 0;
392 if (paddedViewHeight > measuredHeight) {
393 measuredHeight = paddedViewHeight;
396 setMeasuredDimension(contentWidth, measuredHeight);
H A DSizeAdaptiveLayout.java170 private int clampSizeToBounds(int measuredHeight, View child) { argument
173 int heightIn = View.MEASURED_SIZE_MASK & measuredHeight;
H A DActionBarView.java1090 int measuredHeight = 0;
1094 if (paddedViewHeight > measuredHeight) {
1095 measuredHeight = paddedViewHeight;
1098 setMeasuredDimension(contentWidth, measuredHeight);
/frameworks/base/core/java/android/widget/
H A DSwitch.java502 final int measuredHeight = getMeasuredHeight();
503 if (measuredHeight < switchHeight) {
H A DStackView.java1130 final int measuredHeight = getMeasuredHeight();
1134 final int childHeight = Math.round(measuredHeight*(1-PERSPECTIVE_SHIFT_FACTOR_Y))
1158 mNewPerspectiveShiftY = PERSPECTIVE_SHIFT_FACTOR_Y * measuredHeight;
1166 mNewPerspectiveShiftY = measuredHeight - maxHeight;
H A DGridLayout.java1066 int measuredHeight = Math.max(heightSansPadding + vPadding, getSuggestedMinimumHeight());
1070 resolveSizeAndState(measuredHeight, heightSpec, 0));
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialPickerLayout.java151 int measuredHeight = MeasureSpec.getSize(heightMeasureSpec);
153 int minDimension = Math.min(measuredWidth, measuredHeight);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java512 int measuredHeight = exactMeasure.getSecond();
514 if (neededHeight > measuredHeight) {
515 mMeasuredScreenHeight += neededHeight - measuredHeight;
/frameworks/base/core/java/android/webkit/
H A DWebView.java1959 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
1960 WebView.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java2114 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
2115 mWebViewPrivate.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java967 int measuredHeight = Math.max(heightSansPadding + vPadding, getSuggestedMinimumHeight());
971 ViewCompat.resolveSizeAndState(measuredHeight, heightSpec, 0));
/frameworks/base/core/java/android/view/
H A DView.java16583 * @param measuredHeight The measured height of this view. May be a complex
16587 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
16595 measuredHeight += optical ? opticalHeight : -opticalHeight;
16598 mMeasuredHeight = measuredHeight;

Completed in 513 milliseconds