Home
last modified time | relevance | path

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

/frameworks/support/volley/src/com/android/volley/toolbox/
DImageRequest.java46 private final int mMaxHeight; field in ImageRequest
76 mMaxHeight = maxHeight; in ImageRequest()
140 if (mMaxWidth == 0 && mMaxHeight == 0) { in doParse()
151 int desiredWidth = getResizedDimension(mMaxWidth, mMaxHeight, in doParse()
153 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()
529 if (mMaxHeight < drawableHeight) { in setProgressDrawable()
530 mMaxHeight = drawableHeight; in setProgressDrawable()
1100 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
DImageView.java68 private int mMaxHeight = Integer.MAX_VALUE; field in ImageView
291 return mMaxHeight; in getMaxHeight()
316 mMaxHeight = maxHeight; in setMaxHeight()
777 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec); in onMeasure()
DAbsSeekBar.java254 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
346 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
DNumberPicker.java228 private final int mMaxHeight; field in NumberPicker
589 mMaxHeight = attributesArray.getDimensionPixelSize( in NumberPicker()
591 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED in NumberPicker()
592 && mMinHeight > mMaxHeight) { in NumberPicker()
756 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight); in onMeasure()
/frameworks/rs/
DrsFont.cpp412 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) { in cacheBitmap()
559 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
561 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
563 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
565 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
567 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
569 nextLine += mCacheLines.top()->mMaxHeight; in initTextTexture()
840 if ((uint32_t)bitmap->rows > mMaxHeight) { in fitBitmap()
DrsFont.h168 uint32_t mMaxHeight; member
175 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow), in CacheTextureLine()