Home
last modified time | relevance | path

Searched refs:mMaxHeight (Results 1 – 9 of 9) sorted by relevance

/frameworks/support/volley/src/com/android/volley/toolbox/
DImageRequest.java47 private final int mMaxHeight; field in ImageRequest
77 mMaxHeight = maxHeight; in ImageRequest()
141 if (mMaxWidth == 0 && mMaxHeight == 0) { in doParse()
152 int desiredWidth = getResizedDimension(mMaxWidth, mMaxHeight, in doParse()
154 int desiredHeight = getResizedDimension(mMaxHeight, mMaxWidth, in doParse()
/frameworks/base/core/java/android/widget/
DProgressBar.java202 int mMaxHeight; field in ProgressBar
276 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight); in ProgressBar()
415 mMaxHeight = 48; in initProgressBar()
523 if (mMaxHeight < drawableHeight) { in setProgressDrawable()
524 mMaxHeight = drawableHeight; in setProgressDrawable()
1069 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
DImageView.java68 private int mMaxHeight = Integer.MAX_VALUE; field in ImageView
300 return mMaxHeight; in getMaxHeight()
325 mMaxHeight = maxHeight; in setMaxHeight()
771 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec); in onMeasure()
DAbsSeekBar.java250 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
329 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
DNumberPicker.java203 private final int mMaxHeight; field in NumberPicker
564 mMaxHeight = attributesArray.getDimensionPixelSize( in NumberPicker()
566 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED in NumberPicker()
567 && mMinHeight > mMaxHeight) { in NumberPicker()
731 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight); in onMeasure()
/frameworks/rs/
DrsFont.cpp412 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) { in cacheBitmap()
553 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
555 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
557 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
559 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
561 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
563 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
832 if ((uint32_t)bitmap->rows > mMaxHeight) { in fitBitmap()
DrsFont.h168 uint32_t mMaxHeight; member
175 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow), in CacheTextureLine()
/frameworks/base/libs/hwui/
DFontRenderer.cpp49 if (glyph.fHeight + TEXTURE_BORDER_SIZE > mMaxHeight) { in fitBitmap()
620 if (glyph.fHeight + TEXTURE_BORDER_SIZE > mCacheLines[mCacheLines.size() - 1]->mMaxHeight) { in cacheBitmap()
734 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
736 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
738 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
740 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
742 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
744 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
815 uint32_t height = cl->mMaxHeight; in checkTextureUpdate()
DFontRenderer.h88 mMaxHeight(maxHeight), in CacheTextureLine()
98 uint16_t mMaxHeight; variable