Home
last modified time | relevance | path

Searched refs:mFixedHeight (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
H A DFixedWidthTest.java32 private View mFixedHeight; field in FixedWidthTest
46 mFixedHeight = activity.findViewById(R.id.fixed_height); in setUp()
52 assertNotNull(mFixedHeight); in testSetUpConditions()
66 assertEquals(48, mFixedHeight.getHeight()); in testFixedHeight()
/aosp12/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java110 private int mFixedHeight = -1; field in PhotoView
744 if (mFixedHeight != -1) { in onMeasure()
745 super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(mFixedHeight, in onMeasure()
747 setMeasuredDimension(getMeasuredWidth(), mFixedHeight); in onMeasure() local
778 final boolean adjustBounds = (fixedHeight != mFixedHeight); in setFixedHeight()
779 mFixedHeight = fixedHeight; in setFixedHeight()
780 setMeasuredDimension(getMeasuredWidth(), mFixedHeight); in setFixedHeight() local
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/
H A DCellLayout.java125 private int mFixedHeight = -1; field in CellLayout
937 mFixedHeight = height; in setFixedSize()
964 if (mFixedWidth > 0 && mFixedHeight > 0) { in onMeasure()
966 newHeight = mFixedHeight; in onMeasure()
977 if (mFixedWidth > 0 && mFixedHeight > 0) { in onMeasure()