HomeSort by relevance Sort by last modified time
    Searched refs:mFixedHeight (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
FixedWidthTest.java 32 private View mFixedHeight;
46 mFixedHeight = activity.findViewById(R.id.fixed_height);
52 assertNotNull(mFixedHeight);
66 assertEquals(48, mFixedHeight.getHeight());
  /cts/tests/tests/view/src/android/view/cts/
GLSurfaceViewCtsActivity.java 87 private static int mFixedWidth, mFixedHeight;
91 mFixedHeight = height;
116 mView.getHolder().setFixedSize(mFixedWidth, mFixedHeight);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 110 private int mFixedHeight = -1;
744 if (mFixedHeight != -1) {
745 super.onMeasure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(mFixedHeight,
747 setMeasuredDimension(getMeasuredWidth(), mFixedHeight);
778 final boolean adjustBounds = (fixedHeight != mFixedHeight);
779 mFixedHeight = fixedHeight;
780 setMeasuredDimension(getMeasuredWidth(), mFixedHeight);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 124 private int mFixedHeight = -1;
826 mFixedHeight = height;
850 if (mFixedWidth > 0 && mFixedHeight > 0) {
852 newHeight = mFixedHeight;
    [all...]

Completed in 117 milliseconds