Home
last modified time | relevance | path

Searched refs:measuredHeight (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DActionBarContextView.java372 int measuredHeight = 0; in onMeasure() local
377 if (paddedViewHeight > measuredHeight) { in onMeasure()
378 measuredHeight = paddedViewHeight; in onMeasure()
381 setMeasuredDimension(contentWidth, measuredHeight); in onMeasure()
DActionBarView.java947 int measuredHeight = 0; in onMeasure() local
951 if (paddedViewHeight > measuredHeight) { in onMeasure()
952 measuredHeight = paddedViewHeight; in onMeasure()
955 setMeasuredDimension(contentWidth, measuredHeight); in onMeasure()
/frameworks/base/core/java/android/widget/
DSwitch.java360 final int measuredHeight = getMeasuredHeight(); in onMeasure() local
361 if (measuredHeight < switchHeight) { in onMeasure()
DStackView.java1127 final int measuredHeight = getMeasuredHeight();
1131 final int childHeight = Math.round(measuredHeight*(1-PERSPECTIVE_SHIFT_FACTOR_Y))
1155 mNewPerspectiveShiftY = PERSPECTIVE_SHIFT_FACTOR_Y * measuredHeight;
1163 mNewPerspectiveShiftY = measuredHeight - maxHeight;
DGridLayout.java911 int measuredHeight = Math.max(vPadding + height, getSuggestedMinimumHeight()); in onMeasure() local
915 resolveSizeAndState(measuredHeight, heightSpec, 0)); in onMeasure()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DRenderSessionImpl.java433 int measuredHeight = exactMeasure.getSecond(); in render() local
435 if (neededHeight > measuredHeight) { in render()
436 mMeasuredScreenHeight += neededHeight - measuredHeight; in render()
/frameworks/base/core/java/android/webkit/
DWebView.java7579 int measuredHeight = heightSize; in onMeasure() local
7590 measuredHeight = contentHeight; in onMeasure()
7594 if (measuredHeight > heightSize) { in onMeasure()
7595 measuredHeight = heightSize; in onMeasure()
7597 measuredHeight |= MEASURED_STATE_TOO_SMALL; in onMeasure()
7618 setMeasuredDimension(measuredWidth, measuredHeight); in onMeasure()
/frameworks/base/core/java/android/view/
DView.java12683 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) {
12685 mMeasuredHeight = measuredHeight;