HomeSort by relevance Sort by last modified time
    Searched refs:mMaxHeight (Results 1 - 12 of 12) sorted by null

  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/
MaxHeightScrollView.java 25 private int mMaxHeight;
32 mMaxHeight = maxHeight;
38 setMeasuredDimension(getMeasuredWidth(), Math.min(getMeasuredHeight(), mMaxHeight));
  /packages/apps/Mms/src/com/android/mms/layout/
HVGALayoutParameters.java 34 private static int mMaxHeight;
50 mMaxHeight =
53 mImageHeightLandscape = (int) (mMaxHeight * .90f);
54 mTextHeightLandscape = (int) (mMaxHeight * .10f);
60 " mMaxHeight: " + mMaxHeight +
71 : mMaxHeight;
75 return mType == HVGA_LANDSCAPE ? mMaxHeight
  /frameworks/volley/src/com/android/volley/toolbox/
ImageRequest.java 47 private final int mMaxHeight;
77 mMaxHeight = maxHeight;
141 if (mMaxWidth == 0 && mMaxHeight == 0) {
152 int desiredWidth = getResizedDimension(mMaxWidth, mMaxHeight,
154 int desiredHeight = getResizedDimension(mMaxHeight, mMaxWidth,
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ProgressBarICS.java 80 int mMaxHeight;
134 // Calling this method can set mMaxHeight, make sure the corresponding
135 // XML attribute for mMaxHeight is read after calling this method
144 mMaxHeight = a.getDimensionPixelSize(12, mMaxHeight);
252 mMaxHeight = 48;
358 if (mMaxHeight < drawableHeight) {
359 mMaxHeight = drawableHeight;
810 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
  /frameworks/rs/
rsFont.cpp 418 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) {
485 mCacheLines[i]->mMaxHeight,
565 nextLine += mCacheLines.top()->mMaxHeight;
567 nextLine += mCacheLines.top()->mMaxHeight;
569 nextLine += mCacheLines.top()->mMaxHeight;
571 nextLine += mCacheLines.top()->mMaxHeight;
573 nextLine += mCacheLines.top()->mMaxHeight;
575 nextLine += mCacheLines.top()->mMaxHeight;
845 if ((uint32_t)bitmap->rows > mMaxHeight) {
rsFont.h 167 uint32_t mMaxHeight;
174 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
  /frameworks/base/core/java/android/widget/
ProgressBar.java 200 int mMaxHeight;
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);
417 mMaxHeight = 48;
531 if (mMaxHeight < drawableHeight) {
532 mMaxHeight = drawableHeight;
    [all...]
ImageView.java 73 private int mMaxHeight = Integer.MAX_VALUE;
309 return mMaxHeight;
334 mMaxHeight = maxHeight;
816 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
850 heightSize = resolveAdjustedSize(newHeight, mMaxHeight,
    [all...]
AbsSeekBar.java 254 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
346 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
NumberPicker.java 228 private final int mMaxHeight;
594 mMaxHeight = attributesArray.getDimensionPixelSize(
596 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
597 && mMinHeight > mMaxHeight) {
761 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 197 int mMaxHeight;
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;
    [all...]
AbsSeekBar.java 275 int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
381 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));

Completed in 318 milliseconds