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

  /frameworks/base/core/java/android/transition/
TransitionUtils.java 128 int bitmapHeight = (int) (height * scale);
129 Bitmap bitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
136 drawable.setBounds(0, 0, bitmapWidth, bitmapHeight);
158 int bitmapHeight = Math.round(bounds.height());
159 if (bitmapWidth > 0 && bitmapHeight > 0) {
160 float scale = Math.min(1f, ((float)MAX_IMAGE_SIZE) / (bitmapWidth * bitmapHeight));
162 bitmapHeight *= scale;
165 bitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
  /frameworks/base/core/jni/android/graphics/
NinePatchImpl.cpp 189 const int bitmapHeight = bitmap.height();
203 int numFixedYPixelsRemaining = bitmapHeight - numStretchyYPixelsRemaining;
232 j <= numYDivs && src.fTop < bitmapHeight;
237 src.fBottom = bitmapHeight;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RedEyeFilter.java 155 int bitmapHeight = mHeight / 2;
157 Bitmap redEyeBitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
160 mRadius = Math.max(MIN_RADIUS, RADIUS_RATIO * Math.min(bitmapWidth, bitmapHeight));
163 mCanvas.drawCircle(mCenters[i] * bitmapWidth, mCenters[i + 1] * bitmapHeight,
167 FrameFormat format = ImageFormat.create(bitmapWidth, bitmapHeight,
  /frameworks/support/v4/java/android/support/v4/app/
SharedElementCallback.java 171 int bitmapHeight = Math.round(screenBounds.height());
173 if (bitmapWidth > 0 && bitmapHeight > 0) {
174 float scale = Math.min(1f, ((float)MAX_IMAGE_SIZE) / (bitmapWidth * bitmapHeight));
176 bitmapHeight *= scale;
183 bitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
206 int bitmapHeight = (int) (height * scale);
207 Bitmap bitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
214 drawable.setBounds(0, 0, bitmapWidth, bitmapHeight);
  /packages/apps/Camera2/src/com/android/camera/
MultiToggleImageButton.java 378 int bitmapHeight = (height*2) + ((mParentSize - height)/2);
380 bitmap = Bitmap.createBitmap(width, bitmapHeight, Bitmap.Config.ARGB_8888);
  /frameworks/base/core/java/android/text/
TextLine.java 244 float bitmapHeight = bm.getHeight();
245 float scale = -bmAscent / bitmapHeight;
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libpng.cpp 872 png_uint_32 bitmapHeight = (png_uint_32) decodedBitmap.height();
873 for (png_uint_32 y = 0; y < bitmapHeight; y++) {
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 872 png_uint_32 bitmapHeight = (png_uint_32) decodedBitmap.height();
873 for (png_uint_32 y = 0; y < bitmapHeight; y++) {
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
PageContentRepository.java 338 final int bitmapHeight;
341 public RenderSpec(int bitmapWidth, int bitmapHeight,
344 this.bitmapHeight = bitmapHeight;
361 if (bitmapHeight != other.bitmapHeight) {
380 && bitmap.getHeight() == bitmapHeight;
386 result = 31 * result + bitmapHeight;
526 final int bitmapSizeInBytes = renderSpec.bitmapWidth * renderSpec.bitmapHeight
769 * mRenderSpec.bitmapHeight * BYTES_PER_PIXEL
    [all...]
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 484 milliseconds