Home
last modified time | relevance | path

Searched refs:newHeight (Results 1 – 6 of 6) 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.java866 int newHeight = size; in onMeasure() local
868 newHeight = Math.max(size, mDesiredHeight); in onMeasure()
870 newHeight = mDesiredHeight; in onMeasure()
872 setMeasuredDimension(getMeasuredWidth(), newHeight); in onMeasure() local
DTextViewTest.java915 int newHeight = originalHeight + 1; in testHeight() local
916 setMaxHeight(newHeight); in testHeight()
918 assertEquals(newHeight, mTextView.getMaxHeight()); in testHeight()
920 newHeight = originalHeight - 1; in testHeight()
921 setMaxHeight(newHeight); in testHeight()
922 assertEquals(newHeight, mTextView.getHeight()); in testHeight()
923 assertEquals(newHeight, mTextView.getMaxHeight()); in testHeight()
925 newHeight = -1; in testHeight()
926 setMaxHeight(newHeight); in testHeight()
928 assertEquals(newHeight, mTextView.getMaxHeight()); in testHeight()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
DCameraVideoActivity.java571 public ResolutionQuality(int newSizeId, int newWidth, int newHeight) { in ResolutionQuality() argument
574 height = newHeight; in ResolutionQuality()
/cts/tests/tests/view/src/android/view/cts/
DViewTest.java970 int newHeight = 333; in testComputeVerticalScroll() local
972 new LinearLayout.LayoutParams(200, newHeight); in testComputeVerticalScroll()
976 assertEquals(newHeight, view.getHeight()); in testComputeVerticalScroll()