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

  /frameworks/base/libs/hwui/
PatchCache.h 49 Patch* get(const uint32_t bitmapWidth, const uint32_t bitmapHeight,
68 PatchDescription(): bitmapWidth(0), bitmapHeight(0), pixelWidth(0), pixelHeight(0),
72 PatchDescription(const uint32_t bitmapWidth, const uint32_t bitmapHeight,
76 bitmapWidth(bitmapWidth), bitmapHeight(bitmapHeight),
104 uint32_t bitmapHeight;
  /frameworks/base/core/jni/android/graphics/
NinePatchImpl.cpp 187 const int bitmapHeight = bitmap.height();
201 int numFixedYPixelsRemaining = bitmapHeight - numStretchyYPixelsRemaining;
230 j <= numYDivs && src.fTop < bitmapHeight;
235 src.fBottom = bitmapHeight;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RedEyeFilter.java 160 int bitmapHeight = mHeight / 2;
162 Bitmap redEyeBitmap = Bitmap.createBitmap(bitmapWidth, bitmapHeight, Bitmap.Config.ARGB_8888);
165 mRadius = Math.max(MIN_RADIUS, RADIUS_RATIO * Math.min(bitmapWidth, bitmapHeight));
168 mCanvas.drawCircle(mCenters[i] * bitmapWidth, mCenters[i + 1] * bitmapHeight,
172 FrameFormat format = ImageFormat.create(bitmapWidth, bitmapHeight,
  /frameworks/base/core/java/android/text/
TextLine.java 241 float bitmapHeight = bm.getHeight();
242 float scale = -bmAscent / bitmapHeight;
    [all...]
  /frameworks/base/media/java/android/media/videoeditor/
MediaImageItem.java     [all...]
  /packages/apps/Settings/src/com/android/settings/
KeyguardAppWidgetPickActivity.java 317 int bitmapHeight;
322 bitmapHeight = drawable.getIntrinsicHeight();
326 bitmapHeight = appIconSize;
327 defaultPreview = Bitmap.createBitmap(bitmapWidth, bitmapHeight,
349 int finalPreviewHeight = (int) (scale * bitmapHeight);
352 bitmapHeight = Math.min(finalPreviewHeight, maxHeight);
354 Bitmap preview = Bitmap.createBitmap(bitmapWidth, bitmapHeight,
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]

Completed in 695 milliseconds