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

/frameworks/base/media/java/android/media/tv/
H A DTvStreamConfig.java37 private int mMaxHeight; field in class:TvStreamConfig
83 return mMaxHeight;
111 dest.writeInt(mMaxHeight);
122 private Integer mMaxHeight; field in class:TvStreamConfig.Builder
144 mMaxHeight = maxHeight;
154 if (mStreamId == null || mType == null || mMaxWidth == null || mMaxHeight == null
163 config.mMaxHeight = mMaxHeight;
179 && config.mMaxHeight == mMaxHeight;
[all...]
/frameworks/volley/src/com/android/volley/toolbox/
H A DImageRequest.java47 private final int mMaxHeight; field in class:ImageRequest
77 mMaxHeight = maxHeight;
141 if (mMaxWidth == 0 && mMaxHeight == 0) {
152 int desiredWidth = getResizedDimension(mMaxWidth, mMaxHeight,
154 int desiredHeight = getResizedDimension(mMaxHeight, mMaxWidth,
/frameworks/rs/
H A DrsFont.cpp418 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) {
485 mCacheLines[i]->mMaxHeight,
565 nextLine += mCacheLines.top()->mMaxHeight;
567 nextLine += mCacheLines.top()->mMaxHeight;
569 nextLine += mCacheLines.top()->mMaxHeight;
571 nextLine += mCacheLines.top()->mMaxHeight;
573 nextLine += mCacheLines.top()->mMaxHeight;
575 nextLine += mCacheLines.top()->mMaxHeight;
845 if ((uint32_t)bitmap->rows > mMaxHeight) {
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 DProgressBar.java204 int mMaxHeight; field in class:ProgressBar
269 // Calling this method can set mMaxHeight, make sure the corresponding
270 // XML attribute for mMaxHeight is read after calling this method
280 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
506 mMaxHeight = 48;
741 if (mMaxHeight < drawableHeight) {
742 mMaxHeight = drawableHeight;
1687 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DImageView.java79 private int mMaxHeight = Integer.MAX_VALUE; field in class:ImageView
339 return mMaxHeight;
364 mMaxHeight = maxHeight;
929 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
963 heightSize = resolveAdjustedSize(newHeight, mMaxHeight,
H A DAbsSeekBar.java411 final int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
548 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DNumberPicker.java231 private final int mMaxHeight; field in class:NumberPicker
628 mMaxHeight = attributesArray.getDimensionPixelSize(
630 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
631 && mMinHeight > mMaxHeight) {
795 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);

Completed in 3658 milliseconds