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

  /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/core/
SkBitmapCache.h 42 static SkBitmapCacheDesc Make(uint32_t genID, int origWidth, int origHeight);
SkBitmapCache.cpp 53 SkBitmapCacheDesc SkBitmapCacheDesc::Make(uint32_t imageID, int origWidth, int origHeight) {
55 SkASSERT(origWidth > 0 && origHeight > 0);
56 return { imageID, 0, 0, {0, 0, origWidth, origHeight} };
  /external/skqp/src/core/
SkBitmapCache.h 42 static SkBitmapCacheDesc Make(uint32_t genID, int origWidth, int origHeight);
SkBitmapCache.cpp 53 SkBitmapCacheDesc SkBitmapCacheDesc::Make(uint32_t imageID, int origWidth, int origHeight) {
55 SkASSERT(origWidth > 0 && origHeight > 0);
56 return { imageID, 0, 0, {0, 0, origWidth, origHeight} };
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
BitmapDrawableTest.java 105 final int origHeight = preloadedDrawable.getIntrinsicHeight();
121 assertEquals(Math.round(origHeight * scale), scaledDrawable.getIntrinsicHeight());
136 assertEquals(origHeight, scaledDrawable.getIntrinsicHeight());
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
GradientDrawableTest.java 571 final int origHeight = preloadedDrawable.getIntrinsicHeight();
583 assertEquals(Math.round(origHeight * approxHalf), halfDrawable.getIntrinsicHeight());
592 assertEquals(origHeight * 2, doubleDrawable.getIntrinsicHeight());
601 assertEquals(origHeight, origDrawable.getIntrinsicHeight());
618 assertEquals(Math.round(approxDouble * Math.round(origHeight * approxHalf)),
624 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());
  /external/skia/src/codec/
SkIcoCodec.cpp 217 int origHeight = this->getInfo().height();
218 float desiredSize = desiredScale * origWidth * origHeight;
220 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f;
SkPngCodec.cpp 841 png_uint_32 origWidth, origHeight;
843 png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth,
    [all...]
  /external/skqp/src/codec/
SkIcoCodec.cpp 217 int origHeight = this->getInfo().height();
218 float desiredSize = desiredScale * origWidth * origHeight;
220 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f;
SkPngCodec.cpp 835 png_uint_32 origWidth, origHeight;
837 png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth,
    [all...]

Completed in 292 milliseconds