HomeSort by relevance Sort by last modified time
    Searched defs:mBitmap (Results 51 - 60 of 60) sorted by null

1 23

  /frameworks/base/core/java/android/app/
WallpaperManager.java 105 private final Bitmap mBitmap;
113 mBitmap = bitmap;
125 canvas.drawBitmap(mBitmap, mDrawLeft, mDrawTop, mPaint);
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 44 If we are raster, then mGL will be null, and mBitmap may or may not be
46 java-bitmap is). If we are a gl-based, then mBitmap will be null, and
50 private Bitmap mBitmap; // if not null, mGL must be null
139 mBitmap = bitmap;
202 mBitmap = bitmap;
267 if (mBitmap != null) {
268 mBitmap.setDensity(density);
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Allocation.java 73 Bitmap mBitmap;
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
VideoEditorPreviewTest.java 673 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(overlayFilename,
677 mBitmap, (mediaImageItem2.getDuration() / 4),
    [all...]
VideoEditorAPITest.java 451 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(overlayItemFileName,
454 mediaVideoItem1, "overlayId", mBitmap, 5000, 5000);
703 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(overlayItemFileName,
707 mBitmap, 5000, 5000);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
VideoEditorStressTest.java 457 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(
461 mBitmap, 1000, 5000);
466 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(
470 mBitmap, 1000, 5000);
476 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(
480 mBitmap, 0, mediaItem1.getDuration());
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
VideoEditorPerformance.java 460 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(overlayFile, 640,
464 mBitmap, 1000, 4000);
603 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(overlayFilename,
609 mBitmap, overlayStartTime, overlayDuration);
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
LockPatternKeyguardView.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 138 // mBitmap is the unrotated bitmap we pass in to mCropView for detect faces.
140 private Bitmap mBitmap;
628 canvas.drawBitmap(mBitmap,
724 mBitmap = regionDecoder.decodeRegion(
727 mBitmap, regionDecoder), mMediaItem.getFullImageRotation());
729 mCropView.detectFaces(mBitmap);
744 mBitmap = bitmap;
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 840 private Bitmap mBitmap;
842 mBitmap = b;
846 canvas.drawBitmap(mBitmap, 0, 0, null);
    [all...]

Completed in 1269 milliseconds

1 23