HomeSort by relevance Sort by last modified time
    Searched refs:mMaxHeight (Results 1 - 15 of 15) 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 36 private static int mMaxHeight;
52 mMaxHeight =
55 mImageHeightLandscape = (int) (mMaxHeight * .90f);
56 mTextHeightLandscape = (int) (mMaxHeight * .10f);
62 " mMaxHeight: " + mMaxHeight +
73 : mMaxHeight;
77 return mType == HVGA_LANDSCAPE ? mMaxHeight
  /frameworks/base/media/java/android/media/tv/
TvStreamConfig.java 37 private int mMaxHeight;
83 return mMaxHeight;
111 dest.writeInt(mMaxHeight);
122 private Integer mMaxHeight;
144 mMaxHeight = maxHeight;
154 if (mStreamId == null || mType == null || mMaxWidth == null || mMaxHeight == null
163 config.mMaxHeight = mMaxHeight;
179 && config.mMaxHeight == mMaxHeight;
    [all...]
  /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/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),
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsFont.h 167 uint32_t mMaxHeight;
174 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsFont.h 167 uint32_t mMaxHeight;
174 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsFont.h 167 uint32_t mMaxHeight;
174 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
  /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()));
  /frameworks/base/core/java/android/widget/
ProgressBar.java 204 int mMaxHeight;
269 // Calling this method can set mMaxHeight, make sure the corresponding
270 // XML attribute for mMaxHeight is read after calling this method
280 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight);
506 mMaxHeight = 48;
741 if (mMaxHeight < drawableHeight) {
742 mMaxHeight = drawableHeight;
    [all...]
ImageView.java 79 private int mMaxHeight = Integer.MAX_VALUE;
339 return mMaxHeight;
364 mMaxHeight = maxHeight;
929 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
    [all...]
AbsSeekBar.java 411 final int trackHeight = Math.min(mMaxHeight, h - mPaddingTop - mPaddingBottom);
548 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
NumberPicker.java 231 private final int mMaxHeight;
628 mMaxHeight = attributesArray.getDimensionPixelSize(
630 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED
631 && mMinHeight > mMaxHeight) {
795 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight);
    [all...]

Completed in 390 milliseconds