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

/frameworks/support/v7/preference/src/android/support/v7/internal/widget/
H A DPreferenceImageView.java36 private int mMaxHeight = Integer.MAX_VALUE; field in class:PreferenceImageView
79 mMaxHeight = maxHeight;
85 return mMaxHeight;
/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingLinearLayout.java48 private int mMaxHeight; field in class:MessagingLinearLayout
/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/av/media/libstagefright/httplive/
H A DLiveSession.h210 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.java105 private int mMaxHeight = Integer.MAX_VALUE; field in class:ImageView
391 return mMaxHeight;
416 mMaxHeight = maxHeight;
1118 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
1152 heightSize = resolveAdjustedSize(newHeight, mMaxHeight,
H A DProgressBar.java173 int mMaxHeight; field in class:ProgressBar
246 // Calling setProgressDrawable can set mMaxHeight, so make sure the
247 // corresponding XML attribute for mMaxHeight is read after calling
262 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
541 mMaxHeight = 48;
790 if (mMaxHeight < drawableHeight) {
791 mMaxHeight = drawableHeight;
1824 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DNumberPicker.java239 private final int mMaxHeight; field in class:NumberPicker
645 mMaxHeight = attributesArray.getDimensionPixelSize(
647 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
648 && mMinHeight > mMaxHeight) {
812 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);

Completed in 3210 milliseconds