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

/frameworks/support/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/base/libs/hwui/
H A DFontRenderer.h88 mMaxHeight(maxHeight),
98 uint16_t mMaxHeight; member in class:android::uirenderer::CacheTextureLine
/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
300 return mMaxHeight;
325 mMaxHeight = maxHeight;
771 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;
523 if (mMaxHeight < drawableHeight) {
524 mMaxHeight = drawableHeight;
1069 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DNumberPicker.java203 private final int mMaxHeight; field in class:NumberPicker
564 mMaxHeight = attributesArray.getDimensionPixelSize(
566 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
567 && mMinHeight > mMaxHeight) {
731 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);

Completed in 114 milliseconds