Searched refs:mMaxHeight (Results 1 - 9 of 9) 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/rs/
H A DrsFont.cpp412 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) {
476 mCacheLines[i]->mMaxHeight,
553 nextLine += mCacheLines.top()->mMaxHeight;
555 nextLine += mCacheLines.top()->mMaxHeight;
557 nextLine += mCacheLines.top()->mMaxHeight;
559 nextLine += mCacheLines.top()->mMaxHeight;
561 nextLine += mCacheLines.top()->mMaxHeight;
563 nextLine += mCacheLines.top()->mMaxHeight;
832 if ((uint32_t)bitmap->rows > mMaxHeight) {
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 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 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 DAbsSeekBar.java250 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
329 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);
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp49 if (glyph.fHeight + TEXTURE_BORDER_SIZE > mMaxHeight) {
620 if (glyph.fHeight + TEXTURE_BORDER_SIZE > mCacheLines[mCacheLines.size() - 1]->mMaxHeight) {
734 nextLine += mCacheLines.top()->mMaxHeight;
736 nextLine += mCacheLines.top()->mMaxHeight;
738 nextLine += mCacheLines.top()->mMaxHeight;
740 nextLine += mCacheLines.top()->mMaxHeight;
742 nextLine += mCacheLines.top()->mMaxHeight;
744 nextLine += mCacheLines.top()->mMaxHeight;
815 uint32_t height = cl->mMaxHeight;
H A DFontRenderer.h88 mMaxHeight(maxHeight),
98 uint16_t mMaxHeight; member in class:android::uirenderer::CacheTextureLine

Completed in 383 milliseconds