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

/frameworks/base/libs/hwui/
H A DFontRenderer.h238 uint16_t mMaxHeight; member in struct:android::uirenderer::FontRenderer::CacheTextureLine
246 mMaxHeight(maxHeight),
254 if (glyph.fHeight + 2 > mMaxHeight) {
/frameworks/base/libs/rs/
H A DrsFont.h166 uint32_t mMaxHeight; member in struct:android::renderscript::FontState::CacheTextureLine
173 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
/frameworks/base/core/java/android/widget/
H A DImageView.java67 private int mMaxHeight = Integer.MAX_VALUE; field in class:ImageView
286 mMaxHeight = maxHeight;
702 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
H A DProgressBar.java197 int mMaxHeight; field in class:ProgressBar
258 // Calling this method can set mMaxHeight, make sure the corresponding
259 // XML attribute for mMaxHeight is read after calling this method
269 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
411 mMaxHeight = 48;
519 if (mMaxHeight < drawableHeight) {
520 mMaxHeight = drawableHeight;
1012 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
H A DNumberPicker.java219 private final int mMaxHeight; field in class:NumberPicker
558 mMaxHeight = attributesArray.getDimensionPixelSize(R.styleable.NumberPicker_maxHeight,
560 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
561 && mMinHeight > mMaxHeight) {
758 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);

Completed in 2160 milliseconds