Searched defs:mMaxHeight (Results 1 - 9 of 9) sorted by relevance

/frameworks/support/v7/preference/src/android/support/v7/internal/widget/
H A DPreferenceImageView.java32 private int mMaxHeight = Integer.MAX_VALUE; field in class:PreferenceImageView
74 mMaxHeight = maxHeight;
79 return mMaxHeight;
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingLinearLayout.java47 private int mMaxHeight; field in class:MessagingLinearLayout
68 mMaxHeight = a.getDimensionPixelSize(i, 0);
76 if (mMaxHeight <= 0) {
93 Math.min(mMaxHeight, MeasureSpec.getSize(heightMeasureSpec)),
98 mMaxHeight,
/frameworks/base/media/java/android/media/tv/
H A DTvStreamConfig.java37 private int mMaxHeight; field in class:TvStreamConfig
83 return mMaxHeight;
107 dest.writeInt(mMaxHeight);
118 private Integer mMaxHeight; field in class:TvStreamConfig.Builder
140 mMaxHeight = maxHeight;
150 if (mStreamId == null || mType == null || mMaxWidth == null || mMaxHeight == null
159 config.mMaxHeight = mMaxHeight;
175 && config.mMaxHeight == mMaxHeight;
[all...]
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DImageRequest.java48 private final int mMaxHeight; field in class:ImageRequest
80 mMaxHeight = maxHeight;
174 if (mMaxWidth == 0 && mMaxHeight == 0) {
185 int desiredWidth = getResizedDimension(mMaxWidth, mMaxHeight,
187 int desiredHeight = getResizedDimension(mMaxHeight, mMaxWidth,
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.h208 int32_t mMaxHeight; member in struct:android::LiveSession
/frameworks/rs/
H A DrsFont.h167 uint32_t mMaxHeight; member in struct:android::renderscript::FontState::CacheTextureLine
174 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
/frameworks/base/core/java/android/widget/
H A DImageView.java85 private int mMaxHeight = Integer.MAX_VALUE; field in class:ImageView
356 return mMaxHeight;
381 mMaxHeight = maxHeight;
1037 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
1071 heightSize = resolveAdjustedSize(newHeight, mMaxHeight,
H A DProgressBar.java214 int mMaxHeight; field in class:ProgressBar
284 // Calling setProgressDrawable can set mMaxHeight, so make sure the
285 // corresponding XML attribute for mMaxHeight is read after calling
300 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
578 mMaxHeight = 48;
827 if (mMaxHeight < drawableHeight) {
828 mMaxHeight = drawableHeight;
1804 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DNumberPicker.java237 private final int mMaxHeight; field in class:NumberPicker
643 mMaxHeight = attributesArray.getDimensionPixelSize(
645 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
646 && mMinHeight > mMaxHeight) {
810 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);

Completed in 4688 milliseconds