HomeSort by relevance Sort by last modified time
    Searched refs:mMaxHeight (Results 1 - 13 of 13) 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
  /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;
  /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 412 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) {
479 mCacheLines[i]->mMaxHeight,
559 nextLine += mCacheLines.top()->mMaxHeight;
561 nextLine += mCacheLines.top()->mMaxHeight;
563 nextLine += mCacheLines.top()->mMaxHeight;
565 nextLine += mCacheLines.top()->mMaxHeight;
567 nextLine += mCacheLines.top()->mMaxHeight;
569 nextLine += mCacheLines.top()->mMaxHeight;
840 if ((uint32_t)bitmap->rows > mMaxHeight) {
rsFont.h 168 uint32_t mMaxHeight;
175 : 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 72 private int mMaxHeight = Integer.MAX_VALUE;
307 return mMaxHeight;
332 mMaxHeight = maxHeight;
804 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
838 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 368 milliseconds