Home
last modified time | relevance | path

Searched refs:heightSpec (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DSurfaceViewRendererOnMeasureTest.java70 int expectedHeight, int widthSpec, int heightSpec) { in assertMeasuredSize() argument
72 surfaceViewRenderer.onMeasure(widthSpec, heightSpec); in assertMeasuredSize()
76 fail("onMeasure(" + MeasureSpec.toString(widthSpec) + ", " + MeasureSpec.toString(heightSpec) in assertMeasuredSize()
211 final int heightSpec = MeasureSpec.makeMeasureSpec(1280, MeasureSpec.AT_MOST); in testFrame1280x720() local
216 expectedSize.y, widthSpec, heightSpec); in testFrame1280x720()
223 final int heightSpec = MeasureSpec.makeMeasureSpec(1280, MeasureSpec.AT_MOST); in testFrame1280x720() local
228 expectedSize.y, widthSpec, heightSpec); in testFrame1280x720()
234 final int heightSpec = MeasureSpec.makeMeasureSpec(1280, MeasureSpec.EXACTLY); in testFrame1280x720() local
237 surfaceViewRenderer, scalingType, frameDimensions, 720, 1280, widthSpec, heightSpec); in testFrame1280x720()
/external/setupdesign/main/src/com/google/android/setupdesign/view/
DStickyHeaderRecyclerView.java75 protected void onMeasure(int widthSpec, int heightSpec) { in onMeasure() argument
76 super.onMeasure(widthSpec, heightSpec); in onMeasure()
78 measureChild(getHeader(), widthSpec, heightSpec); in onMeasure() local
/external/webrtc/sdk/android/api/org/webrtc/
DRendererCommon.java91 public Point measure(int widthSpec, int heightSpec, int frameWidth, int frameHeight) { in measure() argument
94 final int maxHeight = View.getDefaultSize(Integer.MAX_VALUE, heightSpec); in measure()
111 if (View.MeasureSpec.getMode(heightSpec) == View.MeasureSpec.EXACTLY) { in measure()
DSurfaceViewRenderer.java190 protected void onMeasure(int widthSpec, int heightSpec) { in onMeasure() argument
193 videoLayoutMeasure.measure(widthSpec, heightSpec, rotatedFrameWidth, rotatedFrameHeight); in onMeasure()