Searched refs:widthSpec (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/ |
D | SurfaceViewRendererOnMeasureTest.java | 70 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() 210 final int widthSpec = MeasureSpec.makeMeasureSpec(720, MeasureSpec.AT_MOST); in testFrame1280x720() local 216 expectedSize.y, widthSpec, heightSpec); in testFrame1280x720() 222 final int widthSpec = MeasureSpec.makeMeasureSpec(720, MeasureSpec.EXACTLY); in testFrame1280x720() local 228 expectedSize.y, widthSpec, heightSpec); in testFrame1280x720() 233 final int widthSpec = MeasureSpec.makeMeasureSpec(720, MeasureSpec.AT_MOST); in testFrame1280x720() local 237 surfaceViewRenderer, scalingType, frameDimensions, 720, 1280, widthSpec, heightSpec); in testFrame1280x720()
|
/external/setupdesign/main/src/com/google/android/setupdesign/view/ |
D | StickyHeaderRecyclerView.java | 75 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/ |
D | RendererCommon.java | 91 public Point measure(int widthSpec, int heightSpec, int frameWidth, int frameHeight) { in measure() argument 93 final int maxWidth = View.getDefaultSize(Integer.MAX_VALUE, widthSpec); in measure() 108 if (View.MeasureSpec.getMode(widthSpec) == View.MeasureSpec.EXACTLY) { in measure()
|
D | SurfaceViewRenderer.java | 190 protected void onMeasure(int widthSpec, int heightSpec) { in onMeasure() argument 193 videoLayoutMeasure.measure(widthSpec, heightSpec, rotatedFrameWidth, rotatedFrameHeight); in onMeasure()
|