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

  /packages/apps/Email/src/com/android/email/view/
SizeBoundingFrameLayout.java 33 private int mMaxHeight = DIMENSION_DEFAULT;
54 mMaxHeight = a.getDimensionPixelSize(
72 mMaxHeight = maxHeight;
78 return mMaxHeight;
101 if (mMaxHeight >= 0) {
104 heightSize = Math.min(heightSize, mMaxHeight);
108 heightSize = 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/support/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/rs/
rsFont.h 168 uint32_t mMaxHeight;
175 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
  /frameworks/base/libs/hwui/
FontRenderer.h 88 mMaxHeight(maxHeight),
98 uint16_t mMaxHeight;
  /frameworks/base/core/java/android/widget/
ImageView.java 68 private int mMaxHeight = Integer.MAX_VALUE;
300 return mMaxHeight;
325 mMaxHeight = maxHeight;
771 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
    [all...]
ProgressBar.java 202 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);
415 mMaxHeight = 48;
523 if (mMaxHeight < drawableHeight) {
524 mMaxHeight = drawableHeight;
    [all...]
NumberPicker.java 203 private final int mMaxHeight;
564 mMaxHeight = attributesArray.getDimensionPixelSize(
566 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
567 && mMinHeight > mMaxHeight) {
731 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...]

Completed in 267 milliseconds