HomeSort by relevance Sort by last modified time
    Searched full:createbitmap (Results 101 - 125 of 264) sorted by null

1 2 3 45 6 7 8 91011

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
IconFactory.java 54 Bitmap icon = Bitmap.createBitmap(iconWidth, iconHeight,
  /packages/apps/Launcher2/src/com/android/launcher2/
StrokedTextView.java 83 mCache = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlaysAdapter.java 106 final Bitmap overlayBitmap = Bitmap.createBitmap(mGenericBitmap.getWidth(),
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 83 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888);
110 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, BITMAP_HEIGHT, Config.ARGB_8888);
134 mMutableBitmap = Bitmap.createBitmap(BITMAP_WIDTH, 31, Config.ARGB_8888);
    [all...]
YuvImageTest.java 220 Bitmap dst = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
266 expected = Bitmap.createBitmap(testBitmap, expectedRect.left, expectedRect.top, expectedRect.width(), expectedRect.height());
280 expected = Bitmap.createBitmap(testBitmap, newRect.left, newRect.top,
SweepGradientTest.java 47 mBitmap = Bitmap.createBitmap(SIZE, SIZE, Config.ARGB_8888);
  /cts/tests/tests/holo/src/android/holo/cts/
LayoutTestActivity.java 233 Bitmap diff = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
274 Bitmap bitmap = Bitmap.createBitmap(mTestView.getWidth(), mTestView.getHeight(),
  /external/webkit/Source/WebCore/platform/win/
CursorWin.cpp 64 OwnPtr<HBITMAP> hMask(CreateBitmap(img->width(), img->height(), 1, 1, maskBits.data()));
84 OwnPtr<HBITMAP> andMask(CreateBitmap(cursor.bmWidth, cursor.bmHeight, 1, 1, NULL));
  /frameworks/base/core/java/android/gesture/
Gesture.java 186 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
221 final Bitmap bitmap = Bitmap.createBitmap(width, height,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDraw.java 159 Bitmap result = Bitmap.createBitmap(dstWidth, dstHeight, src.getConfig());
229 mOverlayBitmap = Bitmap.createBitmap(
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 127 ? Bitmap.createBitmap(1, length, config)
128 : Bitmap.createBitmap(length, 1, config);
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/views/
MultiTouchView.java 96 mBitmap = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
156 final Bitmap bmp = Bitmap.createBitmap(colors, 0, w, w, h, Bitmap.Config.ARGB_8888);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 213 Bitmap B = Bitmap.createBitmap(bDimX, bDimY, Bitmap.Config.ARGB_8888);
230 Bitmap badB = Bitmap.createBitmap(47, 8, Bitmap.Config.ARGB_8888);
239 Bitmap badB = Bitmap.createBitmap(48, 4, Bitmap.Config.ARGB_8888);
248 Bitmap badB = Bitmap.createBitmap(36, 6, Bitmap.Config.ARGB_8888);
398 Bitmap bSrc = Bitmap.createBitmap(x, y, Bitmap.Config.ARGB_8888);
399 Bitmap bDst = Bitmap.createBitmap(x, y, Bitmap.Config.ARGB_8888);
  /external/chromium/chrome/browser/history/
top_sites_unittest.cc 163 SkBitmap CreateBitmap(SkColor color) {
494 SkBitmap thumbnail(CreateBitmap(SK_ColorWHITE));
529 SkBitmap thumbnail(CreateBitmap(SK_ColorRED));
566 SkBitmap thumbnail(CreateBitmap(SK_ColorWHITE));
629 SkBitmap tmp_bitmap(CreateBitmap(SK_ColorBLUE));
690 SkBitmap asdf_thumbnail(CreateBitmap(SK_ColorRED));
726 SkBitmap google_thumbnail(CreateBitmap(SK_ColorBLUE));
749 SkBitmap weewar_bitmap(CreateBitmap(SK_ColorYELLOW));
767 SkBitmap google_bitmap(CreateBitmap(SK_ColorGREEN));
    [all...]
  /external/skia/tests/
CanvasTest.cpp 149 static void createBitmap(SkBitmap* bm, SkBitmap::Config config, SkColor color) {
228 createBitmap(&bitmap, SkBitmap::kARGB_8888_Config, 0x05060708);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 449 Bitmap tmp = Bitmap.createBitmap(ret, 0, 0, ret.getWidth(),
502 crop = Bitmap.createBitmap(fullSize, roundedTrueCrop.left,
523 Bitmap tmp = Bitmap.createBitmap((int) returnRect.width(),
533 Bitmap tmp = Bitmap.createBitmap(crop, 0, 0, crop.getWidth(),
622 return Bitmap.createBitmap(image, intCrop.left, intCrop.top, intCrop.width(),
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
BitmapDrawableTest.java 67 Bitmap bitmap = Bitmap.createBitmap(200, 300, Config.ARGB_8888);
281 Bitmap bitmap = Bitmap.createBitmap(200, 300, Config.RGB_565);
298 Bitmap bitmap = Bitmap.createBitmap(200, 300, Config.RGB_565);
NinePatchDrawableTest.java 86 Bitmap bmp = Bitmap.createBitmap(9, 9, Config.ARGB_8888);
289 Bitmap bitmap = Bitmap.createBitmap(COLOR, width, height, Bitmap.Config.RGB_565);
TransitionDrawableTest.java 51 mBitmap = Bitmap.createBitmap(CANVAS_WIDTH, CANVAS_HEIGHT, Config.ARGB_8888);
  /frameworks/base/core/jni/android/graphics/
Graphics.cpp 347 jobject GraphicsJNI::createBitmap(JNIEnv* env, SkBitmap* bitmap, jbyteArray buffer,
360 jobject GraphicsJNI::createBitmap(JNIEnv* env, SkBitmap* bitmap, bool isMutable,
363 return createBitmap(env, bitmap, NULL, isMutable, ninepatch, NULL, density);
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 379 Bitmap b2 = Bitmap.createBitmap(targetWidth, targetHeight,
429 b1 = Bitmap.createBitmap(source, 0, 0,
442 Bitmap b2 = Bitmap.createBitmap(
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
ImageUtils.java 106 final Bitmap bitmap = Bitmap.createBitmap(Math.round(scaledWidth),
204 final Bitmap rotatedBmp = Bitmap.createBitmap(scaledBmp, 0, 0,
249 overlayBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
  /frameworks/ex/carousel/test/src/com/android/carouseltest/
TaskSwitcherActivity.java 64 private Bitmap mBlankBitmap = Bitmap.createBitmap(128, 128, Config.RGB_565);
154 bitmap = Bitmap.createBitmap(DETAIL_TEXTURE_WIDTH, DETAIL_TEXTURE_HEIGHT,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
IconLoader.java 257 return Bitmap.createBitmap(pixels, width, height, Bitmap.Config.ARGB_8888);
319 return Bitmap.createBitmap(pixels, width, height,
  /cts/tests/src/android/view/cts/
SurfaceViewStubActivity.java 174 mCanvas = new MockCanvas(Bitmap.createBitmap( BITMAP_WIDTH,

Completed in 2838 milliseconds

1 2 3 45 6 7 8 91011