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

/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.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.java73 private int mMaxHeight = Integer.MAX_VALUE; field in class:ImageView
309 return mMaxHeight;
334 mMaxHeight = maxHeight;
816 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
850 heightSize = resolveAdjustedSize(newHeight, mMaxHeight,
H A DProgressBar.java200 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);
417 mMaxHeight = 48;
531 if (mMaxHeight < drawableHeight) {
532 mMaxHeight = drawableHeight;
1069 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DNumberPicker.java228 private final int mMaxHeight; field in class:NumberPicker
594 mMaxHeight = attributesArray.getDimensionPixelSize(
596 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
597 && mMinHeight > mMaxHeight) {
761 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarICS.java80 int mMaxHeight; field in class:ProgressBarICS
134 // Calling this method can set mMaxHeight, make sure the corresponding
135 // XML attribute for mMaxHeight is read after calling this method
144 mMaxHeight = a.getDimensionPixelSize(12, mMaxHeight);
252 mMaxHeight = 48;
358 if (mMaxHeight < drawableHeight) {
359 mMaxHeight = drawableHeight;
810 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));

Completed in 160 milliseconds