/aosp12/frameworks/base/media/java/android/media/tv/ |
H A D | TvStreamConfig.java | 39 private int mMaxHeight; field in TvStreamConfig 85 return mMaxHeight; in getMaxHeight() 110 dest.writeInt(mMaxHeight); in writeToParcel() 121 private Integer mMaxHeight; field in TvStreamConfig.Builder 143 mMaxHeight = maxHeight; in maxHeight() 153 if (mStreamId == null || mType == null || mMaxWidth == null || mMaxHeight == null in build() 162 config.mMaxHeight = mMaxHeight; in build() 178 && config.mMaxHeight == mMaxHeight; in equals()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/ |
H A D | BipPixel.java | 65 private final int mMaxHeight; field in BipPixel 105 mMaxHeight = maxHeight; in BipPixel() 169 mMaxHeight = maxHeight; in BipPixel() 189 return mMaxHeight; in getMaxHeight() 232 s = mMaxWidth + "*" + mMaxHeight; in toString() 235 s = mMinWidth + "*" + mMinHeight + "-" + mMaxWidth + "*" + mMaxHeight; in toString() 238 s = mMinWidth + "**-" + mMaxWidth + "*" + mMaxHeight; in toString()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/ |
H A D | MaxHeightScrollView.java | 32 private final int mMaxHeight; field in MaxHeightScrollView 38 mMaxHeight = attr.getDimensionPixelSize(R.styleable.MaxHeightScrollView_android_maxHeight, in MaxHeightScrollView() 46 if (mMaxHeight != NO_MAX_HEIGHT) { in onMeasure() 47 setMeasuredDimension(getMeasuredWidth(), Math.min(getMeasuredHeight(), mMaxHeight)); in onMeasure() local
|
/aosp12/packages/apps/TV/src/com/android/tv/util/images/ |
H A D | ImageLoader.java | 278 protected final int mMaxHeight; field in ImageLoader.LoadBitmapTask 290 bitmapInfo != null && bitmapInfo.needToReload(mMaxWidth, mMaxHeight); in isReloadNeeded() 303 + mMaxHeight in isReloadNeeded() 312 return (other.mMaxHeight != Integer.MAX_VALUE && mMaxHeight >= other.mMaxHeight * 2) in isReloadNeeded() 334 mMaxHeight = maxHeight; in LoadBitmapTask() 379 + mMaxHeight in toString() 398 mAppContext, getKey(), mMaxWidth, mMaxHeight); in doGetBitmapInBackground() 428 : BitmapUtils.createScaledBitmapInfo(getKey(), bm, mMaxWidth, mMaxHeight); in doGetBitmapInBackground()
|
/aosp12/frameworks/av/media/codecs/m4v_h263/fuzzer/ |
H A D | mpeg4_h263_dec_fuzzer.cpp | 59 size_t mMaxHeight = MPEG4_MAX_HEIGHT; member in Codec 63 size_t mMaxHeight = H263_MAX_HEIGHT; member in Codec 114 size_t outputBufferSize = align(mMaxWidth, 16) * align(mMaxHeight, 16) * 3 / 2; in decodeFrames() 132 if (!PVInitVideoDecoder(mDecHandle, volData, &volSize, kLayer, mMaxWidth, mMaxHeight, in decodeFrames()
|
/aosp12/frameworks/base/packages/SettingsLib/IllustrationPreference/src/com/android/settingslib/widget/ |
H A D | IllustrationPreference.java | 56 private int mMaxHeight = SIZE_UNSPECIFIED; field in IllustrationPreference 236 if (maxHeight != mMaxHeight) { 237 mMaxHeight = maxHeight; 297 if (mMaxHeight == SIZE_UNSPECIFIED) { 304 final int restrictedMaxHeight = Math.min(mMaxHeight, frameHeight);
|
/aosp12/packages/apps/TV/tuner/src/com/android/tv/tuner/layout/ |
H A D | ScaledLayout.java | 48 private final int mMaxHeight; field in ScaledLayout 66 mMaxHeight = size.y; in ScaledLayout() 213 scaleHeight > mMaxHeight ? mMaxHeight : scaleHeight, in onMeasure()
|
/aosp12/frameworks/rs/ |
H A D | rsFont.cpp | 417 if ((uint32_t)bitmap->rows > mCacheLines[mCacheLines.size()-1]->mMaxHeight) { in cacheBitmap() 563 nextLine += mCacheLines.back()->mMaxHeight; in initTextTexture() 565 nextLine += mCacheLines.back()->mMaxHeight; in initTextTexture() 567 nextLine += mCacheLines.back()->mMaxHeight; in initTextTexture() 569 nextLine += mCacheLines.back()->mMaxHeight; in initTextTexture() 571 nextLine += mCacheLines.back()->mMaxHeight; in initTextTexture() 573 nextLine += mCacheLines.back()->mMaxHeight; in initTextTexture() 841 if ((uint32_t)bitmap->rows > mMaxHeight) { in fitBitmap()
|
H A D | rsFont.h | 167 uint32_t mMaxHeight; member 174 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow), in CacheTextureLine()
|
/aosp12/packages/apps/Settings/src/com/android/settings/panel/ |
H A D | PanelFragment.java | 102 private int mMaxHeight; field in PanelFragment 119 if (mLayoutView.getHeight() > mMaxHeight) { 121 params.height = mMaxHeight; 148 mMaxHeight = getResources().getDimensionPixelSize(R.dimen.output_switcher_slice_max_height); in onCreateView()
|
/aosp12/frameworks/base/core/java/android/widget/ |
H A D | ProgressBar.java | 196 int mMaxHeight; field in ProgressBar 303 mMaxHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_maxHeight, mMaxHeight); in ProgressBar() 482 mMaxHeight = maxHeight; in setMaxHeight() 490 return mMaxHeight; in getMaxHeight() 651 mMaxHeight = 48; in initProgressBar() 949 if (mMaxHeight < drawableHeight) { in setProgressDrawable() 950 mMaxHeight = drawableHeight; in setProgressDrawable() 2190 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
|
H A D | ImageView.java | 116 private int mMaxHeight = Integer.MAX_VALUE; field in ImageView 419 return mMaxHeight; 444 mMaxHeight = maxHeight; 1181 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec); in onMeasure() 1215 heightSize = resolveAdjustedSize(newHeight, mMaxHeight, in onMeasure()
|
H A D | NumberPicker.java | 259 private final int mMaxHeight; field in NumberPicker 681 mMaxHeight = attributesArray.getDimensionPixelSize( in NumberPicker() 683 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED in NumberPicker() 684 && mMinHeight > mMaxHeight) { in NumberPicker() 854 final int newHeightMeasureSpec = makeMeasureSpec(heightMeasureSpec, mMaxHeight); in onMeasure()
|
H A D | AbsSeekBar.java | 677 final int trackHeight = Math.min(mMaxHeight, paddedHeight); 889 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
|
/aosp12/frameworks/av/media/codec2/hidl/1.0/vts/functional/video/ |
H A D | VtsHalMediaC2V1_0TargetVideoEncTest.cpp | 95 mMaxHeight = 0; in SetUp() 101 mHeight = std::max(std::min(mHeight, mMaxHeight), mMinHeight); in SetUp() 201 int32_t mMaxHeight; member in __anon33e311f30110::Codec2VideoEncHidlTestBase 473 mMaxHeight = (uint32_t)(heightRange.max).ref<uint32_t>(); in getMaxMinResolutionSupported() 487 mMaxHeight = std::max(curr, mMaxHeight); in getMaxMinResolutionSupported()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
H A D | CameraManager.java | 1042 private final int mMaxHeight; field in CameraManager.SizeComparator 1053 mMaxHeight = maxHeight; in SizeComparator() 1065 if ((left.width <= mMaxWidth && left.height <= mMaxHeight) != in compare() 1066 (right.width <= mMaxWidth && right.height <= mMaxHeight)) { in compare()
|
/aosp12/frameworks/base/cmds/bootanimation/ |
H A D | BootAnimation.h | 217 int mMaxHeight = 0; variable
|
H A D | BootAnimation.cpp | 483 if (mMaxHeight != 0 && limited.height > mMaxHeight) { in limitSurfaceSize() 484 limited.height = mMaxHeight; in limitSurfaceSize() 485 limited.width = mMaxHeight * aspectRatio; in limitSurfaceSize() 507 mMaxHeight = android::base::GetIntProperty("ro.surface_flinger.max_graphics_height", 0); in readyToRun()
|
/aosp12/frameworks/av/media/libstagefright/httplive/ |
H A D | LiveSession.h | 210 int32_t mMaxHeight; member
|
H A D | LiveSession.cpp | 292 mMaxHeight(480), in LiveSession() 488 (*meta)->setInt32(kKeyMaxHeight, mMaxHeight); in getStreamFormatMeta() 1114 mMaxHeight = maxHeight > 0 ? maxHeight : mMaxHeight; in onMasterPlaylistFetched()
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 34556 Landroid/media/tv/TvStreamConfig$Builder;->mMaxHeight:Ljava/lang/Integer; 34562 Landroid/media/tv/TvStreamConfig;->mMaxHeight:I 71753 Landroid/widget/NumberPicker;->mMaxHeight:I
|