HomeSort by relevance Sort by last modified time
    Searched defs:origHeight (Results 1 - 7 of 7) sorted by null

  /cts/tests/app/src/android/app/cts/
DisplayTest.java 55 final int origHeight = origDisplay.getHeight();
64 if (origWidth != origHeight) {
70 origHeight == origDisplay.getHeight());
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
ImfBaseTestCase.java 124 int origHeight;
127 origHeight = rootView.getHeight();
135 while (Math.abs(newHeight - origHeight) < IME_MIN_HEIGHT && SystemClock.uptimeMillis() < timeoutTime) {
139 return (Math.abs(origHeight - newHeight) >= IME_MIN_HEIGHT);
  /external/skia/src/codec/
SkIcoCodec.cpp 209 int origHeight = this->getInfo().height();
210 float desiredSize = desiredScale * origWidth * origHeight;
212 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f;
SkPngCodec.cpp 839 png_uint_32 origWidth, origHeight;
841 png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth,
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
BitmapDrawableTest.java 577 final int origHeight = preloadedDrawable.getIntrinsicHeight();
593 assertEquals(Math.round(origHeight * scale), scaledDrawable.getIntrinsicHeight());
608 assertEquals(origHeight, scaledDrawable.getIntrinsicHeight());
GradientDrawableTest.java 562 final int origHeight = preloadedDrawable.getIntrinsicHeight();
574 assertEquals(Math.round(origHeight * approxHalf), halfDrawable.getIntrinsicHeight());
583 assertEquals(origHeight * 2, doubleDrawable.getIntrinsicHeight());
592 assertEquals(origHeight, origDrawable.getIntrinsicHeight());
609 assertEquals(Math.round(approxDouble * Math.round(origHeight * approxHalf)),
615 assertEquals(origHeight, doubleDrawable.getIntrinsicHeight());
NinePatchDrawableTest.java 454 final int origHeight = preloadedDrawable.getIntrinsicHeight();
468 assertEquals(Math.round(origHeight * scale), scaledDrawable.getIntrinsicHeight());
485 assertEquals(origHeight, scaledDrawable.getIntrinsicHeight());
539 final int origHeight = preloadedDrawable.getIntrinsicHeight();
554 assertEquals(Math.round(origHeight * scale), scaledDrawable.getIntrinsicHeight());
574 assertEquals(origHeight, scaledDrawable.getIntrinsicHeight());

Completed in 577 milliseconds