Home
last modified time | relevance | path

Searched refs:mMaxHeight (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/media/java/android/media/tv/
DTvStreamConfig.java38 private int mMaxHeight; field in TvStreamConfig
84 return mMaxHeight; in getMaxHeight()
112 dest.writeInt(mMaxHeight); in writeToParcel()
123 private Integer mMaxHeight; field in TvStreamConfig.Builder
145 mMaxHeight = maxHeight; in maxHeight()
155 if (mStreamId == null || mType == null || mMaxWidth == null || mMaxHeight == null in build()
164 config.mMaxHeight = mMaxHeight; in build()
/frameworks/volley/src/com/android/volley/toolbox/
DImageRequest.java47 private final int mMaxHeight; field in ImageRequest
77 mMaxHeight = maxHeight; in ImageRequest()
141 if (mMaxWidth == 0 && mMaxHeight == 0) { in doParse()
152 int desiredWidth = getResizedDimension(mMaxWidth, mMaxHeight, in doParse()
154 int desiredHeight = getResizedDimension(mMaxHeight, mMaxWidth, in doParse()
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
DProgressBarCompat.java81 int mMaxHeight; field in ProgressBarCompat
145 mMaxHeight = a.getDimensionPixelSize(12, mMaxHeight); in ProgressBarCompat()
253 mMaxHeight = 48; in initProgressBar()
359 if (mMaxHeight < drawableHeight) { in setProgressDrawable()
360 mMaxHeight = drawableHeight; in setProgressDrawable()
813 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
/frameworks/rs/
DrsFont.cpp418 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) { in cacheBitmap()
565 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
567 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
569 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
571 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
573 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
575 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
845 if ((uint32_t)bitmap->rows > mMaxHeight) { in fitBitmap()
DrsFont.h167 uint32_t mMaxHeight; member
174 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow), in CacheTextureLine()
/frameworks/base/core/java/android/widget/
DProgressBar.java204 int mMaxHeight; field in ProgressBar
282 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight); in ProgressBar()
508 mMaxHeight = 48; in initProgressBar()
736 if (mMaxHeight < drawableHeight) { in setProgressDrawable()
737 mMaxHeight = drawableHeight; in setProgressDrawable()
1713 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
DImageView.java79 private int mMaxHeight = Integer.MAX_VALUE; field in ImageView
339 return mMaxHeight; in getMaxHeight()
364 mMaxHeight = maxHeight; in setMaxHeight()
922 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec); in onMeasure()
956 heightSize = resolveAdjustedSize(newHeight, mMaxHeight, in onMeasure()
DAbsSeekBar.java408 final int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
557 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
DNumberPicker.java231 private final int mMaxHeight; field in NumberPicker
628 mMaxHeight = attributesArray.getDimensionPixelSize( in NumberPicker()
630 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED in NumberPicker()
631 && mMinHeight > mMaxHeight) { in NumberPicker()
795 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight); in onMeasure()