Searched refs:mMaxHeight (Results 1 – 9 of 9) sorted by relevance
/frameworks/support/volley/src/com/android/volley/toolbox/ |
D | ImageRequest.java | 47 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/ |
D | ProgressBar.java | 202 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()
|
D | ImageView.java | 68 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()
|
D | AbsSeekBar.java | 250 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom); 329 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
|
D | NumberPicker.java | 203 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/ |
D | rsFont.cpp | 412 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()
|
D | rsFont.h | 168 uint32_t mMaxHeight; member 175 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow), in CacheTextureLine()
|
/frameworks/base/libs/hwui/ |
D | FontRenderer.cpp | 49 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()
|
D | FontRenderer.h | 88 mMaxHeight(maxHeight), in CacheTextureLine() 98 uint16_t mMaxHeight; variable
|