Home
last modified time | relevance | path

Searched refs:newHeight (Results 1 – 5 of 5) sorted by relevance

/cts/apps/CtsVerifier/include/colorchecker/
Dtestingimage.h36 int newHeight, int newWidth);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
DCameraOrientationActivity.java466 int newWidth, newHeight;
473 newHeight = (int) (viewWidth * ((double) mOptimalSize.height /
477 newHeight = viewHeight;
482 LayoutParams layoutParams = new LayoutParams(newWidth, newHeight);
/cts/tests/tests/widget/src/android/widget/cts/
DScrollViewTest.java900 int newHeight = size; in onMeasure() local
902 newHeight = Math.max(size, mDesiredHeight); in onMeasure()
904 newHeight = mDesiredHeight; in onMeasure()
906 setMeasuredDimension(getMeasuredWidth(), newHeight); in onMeasure() local
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
DCameraVideoActivity.java494 public ResolutionQuality(int newSizeId, int newWidth, int newHeight) { in ResolutionQuality() argument
497 height = newHeight; in ResolutionQuality()
/cts/tests/tests/view/src/android/view/cts/
DViewTest.java902 int newHeight = 333; in testComputeVerticalScroll() local
903 … final LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(200, newHeight); in testComputeVerticalScroll()
912 assertEquals(newHeight, view.getHeight()); in testComputeVerticalScroll()