Home
last modified time | relevance | path

Searched refs:heightSpecMode (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/widget/
DVideoView.java150 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
153 if (widthSpecMode == MeasureSpec.EXACTLY && heightSpecMode == MeasureSpec.EXACTLY) { in onMeasure()
170 if (heightSpecMode == MeasureSpec.AT_MOST && height > heightSpecSize) { in onMeasure()
174 } else if (heightSpecMode == MeasureSpec.EXACTLY) { in onMeasure()
186 if (heightSpecMode == MeasureSpec.AT_MOST && height > heightSpecSize) { in onMeasure()
DAdapterViewAnimator.java697 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
704 if (heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
707 } else if (heightSpecMode == MeasureSpec.AT_MOST) { in onMeasure()
721 } else if (heightSpecMode == MeasureSpec.AT_MOST) { in onMeasure()
DStackView.java1179 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
1186 if (heightSpecMode == MeasureSpec.UNSPECIFIED) {
1190 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
1210 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
DSlidingDrawer.java281 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
284 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
DImageView.java996 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
1013 resizeHeight = heightSpecMode != MeasureSpec.EXACTLY; in onMeasure()
/frameworks/base/core/java/com/android/internal/widget/
DSlidingTab.java484 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
489 || heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
491 +"(wspec=" + widthSpecMode + ", hspec=" + heightSpecMode + ")", in onMeasure()