HomeSort by relevance Sort by last modified time
    Searched full:getscaledheight (Results 1 - 18 of 18) sorted by null

  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
GlideBitmapDrawable.java 46 height = state.bitmap.getScaledHeight(targetDensity);
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJDecompressor.java 285 public int getScaledHeight(int desiredWidth, int desiredHeight) {
289 throw new IllegalArgumentException("Invalid argument in getScaledHeight()");
318 * TJ#getScalingFactors} or by calling {@link #getScaledHeight}. If the
439 int scaledHeight = getScaledHeight(desiredWidth, desiredHeight);
473 int scaledHeight = getScaledHeight(dstImage.getWidth(),
547 int scaledHeight = getScaledHeight(desiredWidth, desiredHeight);
600 int scaledHeight = getScaledHeight(desiredWidth, desiredHeight);
628 * TJ#getScalingFactors} or by calling {@link #getScaledHeight}. If the
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.cpp 453 mStagingProperties.getScaledWidth(), mStagingProperties.getScaledHeight());
487 mProperties.getScaledHeight());
499 && dst.height() >= mProperties.getScaledHeight();
502 int scaledHeight = SkScalarCeilToInt(mProperties.getScaledHeight());
575 int scaledHeight = SkScalarCeilToInt(mProperties.getScaledHeight());
VectorDrawable.h 654 float getScaledHeight() const {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DensityActivity.java 210 mBitmap.getScaledHeight(metrics));
  /frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
DpiTestActivity.java 240 mBitmap.getScaledHeight(metrics));
  /external/libjpeg-turbo/java/doc/org/libjpegturbo/turbojpeg/
TJDecompressor.html 374 <td class="colLast"><code><strong><a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getScaledHeight(int,%20int)">getScaledHeight</a></strong>(int&nbsp;desiredWidth,
    [all...]
TJTransformer.html 205 <code><a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#close()">close</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompress(java.awt.image.BufferedImage,%20int)">decompress</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompress(byte[],%20int,%20int,%20int,%20int,%20int)">decompress</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompress(byte[],%20int,%20int,%20int,%20int,%20int,%20int,%20int)">decompress</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompress(int[],%20int,%20int,%20int,%20int,%20int,%20int,%20int)">decompress</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompress(int,%20int,%20int,%20int)">decompress</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompress(int,%20int,%20int,%20int,%20int)">decompress</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompressToYUV(byte[],%20int)">decompressToYUV</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompressToYUV(int)">decompressToYUV</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompressToYUV(int,%20int[],%20int,%20int)">decompressToYUV</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompressToYUV(int,%20int,%20int,%20int)">decompressToYUV</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#decompressToYUV(org.libjpegturbo.turbojpeg.YUVImage,%20int)">decompressToYUV</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#finalize()">finalize</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getColorspace()">getColorspace</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getHeight()">getHeight</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getJPEGBuf()">getJPEGBuf</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getJPEGSize()">getJPEGSize</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getScaledHeight(int,%20int)">getScaledHeight</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getScaledWidth(int,%20int)">getScaledWidth</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getSubsamp()">getSubsamp</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#getWidth()">getWidth</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#setJPEGImage(byte[],%20int)">setJPEGImage</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#setSourceImage(byte[],%20int)">setSourceImage</a>, <a href="../../../org/libjpegturbo/turbojpeg/TJDecompressor.html#setSourceImage(org.libjpegturbo.turbojpeg.YUVImage)">setSourceImage</a></code></li>
  /frameworks/support/core-utils/gingerbread/android/support/v4/graphics/drawable/
RoundedBitmapDrawable.java 82 mBitmapHeight = mBitmap.getScaledHeight(mTargetDensity);
  /frameworks/base/graphics/java/android/graphics/
BitmapFactory.java 264 * Bitmap.getScaledWidth} and {@link Bitmap#getScaledHeight
265 * Bitmap.getScaledHeight} to account for any different between the
    [all...]
Bitmap.java     [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java     [all...]
  /external/libjpeg-turbo/java/
TJUnitTest.java 735 temp2 = tjd.getScaledHeight(temp1, temp2);
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
BitmapDrawable.java 218 mBitmapHeight = bitmap.getScaledHeight(mTargetDensity);
    [all...]
  /external/libjpeg-turbo/java/doc/
index-all.html 421 <dt><span class="strong"><a href="./org/libjpegturbo/turbojpeg/TJDecompressor.html#getScaledHeight(int,%20int)">getScal (…)
    [all...]
  /packages/services/Car/car-support-lib/
proguard-release.flags     [all...]
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 
  /prebuilts/sdk/current/support/core-utils/
android-support-core-utils.jar 

Completed in 622 milliseconds