Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DVideoView.java193 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
196 if (widthSpecMode == MeasureSpec.EXACTLY && heightSpecMode == MeasureSpec.EXACTLY) { in onMeasure()
213 if (heightSpecMode == MeasureSpec.AT_MOST && height > heightSpecSize) { in onMeasure()
217 } else if (heightSpecMode == MeasureSpec.EXACTLY) { in onMeasure()
229 if (heightSpecMode == MeasureSpec.AT_MOST && height > heightSpecSize) { in onMeasure()
DAdapterViewAnimator.java705 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
712 if (heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
715 } else if (heightSpecMode == MeasureSpec.AT_MOST) { in onMeasure()
729 } else if (heightSpecMode == MeasureSpec.AT_MOST) { in onMeasure()
DStackView.java1187 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
1194 if (heightSpecMode == MeasureSpec.UNSPECIFIED) {
1198 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
1218 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
DSlidingDrawer.java286 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
289 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
DImageView.java1144 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
1161 resizeHeight = heightSpecMode != MeasureSpec.EXACTLY; in onMeasure()
/frameworks/base/core/java/com/android/internal/widget/
DSlidingTab.java487 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
492 || heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
494 +"(wspec=" + widthSpecMode + ", hspec=" + heightSpecMode + ")", in onMeasure()