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

  /external/webkit/WebCore/platform/graphics/android/
SkBitmapRef.h 45 int origHeight() const { return fOrigHeight; }
ImageAndroid.cpp 213 float invScaleY = (float)bitmap.height() / image->origHeight();
236 bitmap.height() != image->origHeight()) {
239 image->origWidth(), image->origHeight());
275 image->origHeight() != origBitmap.height();
280 scaleY = (float)image->origHeight() / origBitmap.height();
332 bitmap.height() != image->origHeight()) {
335 image->origWidth(), image->origHeight(),
ImageSourceAndroid.cpp 122 int origHeight, int sampleSize)
124 this->setOrigSize(origWidth, origHeight);
332 return IntSize(m_decoder.m_image->origWidth(), m_decoder.m_image->origHeight());
  /external/skia/src/images/
SkScaledBitmapSampler.h 11 SkScaledBitmapSampler(int origWidth, int origHeight, int cellSize);
SkImageDecoder_libpng.cpp 188 png_uint_32 origWidth, origHeight;
190 png_get_IHDR(png_ptr, info_ptr, &origWidth, &origHeight, &bit_depth, &color_type,
298 size.setMul(origWidth, origHeight);
308 if (!this->chooseFromOneChoice(config, origWidth, origHeight)) {
313 SkScaledBitmapSampler sampler(origWidth, origHeight, sampleSize);
419 for (png_uint_32 y = 0; y < origHeight; y++) {
448 SkAutoMalloc storage(origWidth * origHeight * srcBytesPerPixel);
454 for (png_uint_32 y = 0; y < origHeight; y++) {
483 SkASSERT(read <= origHeight);
484 skip_src_rows(png_ptr, srcRow, origHeight - read)
    [all...]
  /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);

Completed in 63 milliseconds