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

/frameworks/support/volley/src/com/android/volley/toolbox/
H A DImageRequest.java46 private final int mMaxHeight; field in class:ImageRequest
76 mMaxHeight = maxHeight;
140 if (mMaxWidth == 0 && mMaxHeight == 0) {
151 int desiredWidth = getResizedDimension(mMaxWidth, mMaxHeight,
153 int desiredHeight = getResizedDimension(mMaxHeight, mMaxWidth,
/frameworks/rs/
H A DrsFont.h168 uint32_t mMaxHeight; member in struct:android::renderscript::FontState::CacheTextureLine
175 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
/frameworks/base/core/java/android/widget/
H A DImageView.java68 private int mMaxHeight = Integer.MAX_VALUE; field in class:ImageView
291 return mMaxHeight;
316 mMaxHeight = maxHeight;
777 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
H A DProgressBar.java202 int mMaxHeight; field in class:ProgressBar
265 // Calling this method can set mMaxHeight, make sure the corresponding
266 // XML attribute for mMaxHeight is read after calling this method
276 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
415 mMaxHeight = 48;
529 if (mMaxHeight < drawableHeight) {
530 mMaxHeight = drawableHeight;
1100 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DNumberPicker.java228 private final int mMaxHeight; field in class:NumberPicker
589 mMaxHeight = attributesArray.getDimensionPixelSize(
591 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
592 && mMinHeight > mMaxHeight) {
756 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);

Completed in 219 milliseconds