HomeSort by relevance Sort by last modified time
    Searched defs:bitmapWidth (Results 1 - 6 of 6) 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),
103 uint32_t bitmapWidth;
  /frameworks/base/core/jni/android/graphics/
NinePatchImpl.cpp 186 const int bitmapWidth = bitmap.width();
196 int numFixedXPixelsRemaining = bitmapWidth - numStretchyXPixelsRemaining;
256 i <= numXDivs && src.fLeft < bitmapWidth;
260 src.fRight = bitmapWidth;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RedEyeFilter.java 159 int bitmapWidth = mWidth / 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,
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GLUtils.cpp 391 int bitmapWidth = bitmap.width();
398 int* pixelsRow = new int[bitmapWidth];
399 for (int i = 0; i < bitmapWidth; i++)
404 if (memcmp(pixelsRow, &firstPixelPtr[bitmapWidth * j], 4 * bitmapWidth)) {
  /frameworks/base/media/java/android/media/videoeditor/
MediaImageItem.java     [all...]
  /packages/apps/Settings/src/com/android/settings/
KeyguardAppWidgetPickActivity.java 316 int bitmapWidth;
321 bitmapWidth = drawable.getIntrinsicWidth();
325 bitmapWidth = appIconSize;
327 defaultPreview = Bitmap.createBitmap(bitmapWidth, bitmapHeight,
345 if (bitmapWidth > maxWidth) {
346 scale = maxWidth / (float) bitmapWidth;
348 int finalPreviewWidth = (int) (scale * bitmapWidth);
351 bitmapWidth = finalPreviewWidth;
354 Bitmap preview = Bitmap.createBitmap(bitmapWidth, bitmapHeight,

Completed in 2560 milliseconds