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.java700 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
707 if (heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
710 } else if (heightSpecMode == MeasureSpec.AT_MOST) { in onMeasure()
724 } else if (heightSpecMode == MeasureSpec.AT_MOST) { in onMeasure()
DStackView.java1185 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
1192 if (heightSpecMode == MeasureSpec.UNSPECIFIED) {
1196 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
1216 } 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.java1134 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
1151 resizeHeight = heightSpecMode != MeasureSpec.EXACTLY; in onMeasure()
/frameworks/base/core/java/com/android/internal/widget/
DSlidingTab.java490 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec); in onMeasure() local
495 || heightSpecMode == MeasureSpec.UNSPECIFIED) { in onMeasure()
497 +"(wspec=" + widthSpecMode + ", hspec=" + heightSpecMode + ")", in onMeasure()