Searched refs:bm (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/native/graphics/jni/
H A Dbitmap.cpp26 SkBitmap* bm = GraphicsJNI::getNativeBitmap(env, jbitmap); local
27 if (NULL == bm) {
32 info->width = bm->width();
33 info->height = bm->height();
34 info->stride = bm->rowBytes();
37 switch (bm->config()) {
63 SkBitmap* bm = GraphicsJNI::getNativeBitmap(env, jbitmap); local
64 if (NULL == bm) {
68 bm->lockPixels();
69 void* addr = bm
86 SkBitmap* bm = GraphicsJNI::getNativeBitmap(env, jbitmap); local
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java295 Bitmap bm = null;
299 bm = decodeStream(stream, null, opts);
302 If the exception happened on open, bm will be null.
313 return bm;
367 Bitmap bm = null;
374 bm = decodeResourceStream(res, value, is, null, opts);
377 If the exception happened on open, bm will be null.
378 If it happened on close, bm is still valid.
388 if (bm == null && opts != null && opts.inBitmap != null) {
392 return bm;
502 finishDecode(Bitmap bm, Rect outPadding, Options opts) argument
[all...]
H A DBitmap.java605 Bitmap bm = nativeCreate(null, 0, width, width, height, config.nativeInt, true);
607 nativeErase(bm.mNativeBitmap, 0xff000000);
608 nativeSetHasAlpha(bm.mNativeBitmap, hasAlpha);
613 //nativeErase(bm.mNativeBitmap, 0);
615 return bm;
1052 Bitmap bm = nativeCreateFromParcel(p);
1053 if (bm == null) {
1056 return bm;
1121 Bitmap bm = nativeExtractAlpha(mNativeBitmap, nativePaint, offsetXY);
1122 if (bm
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java47 /*package*/ static Bitmap finishDecode(Bitmap bm, Rect outPadding, Options opts) { argument
48 if (bm == null || opts == null) {
49 return bm;
54 return bm;
57 bm.setDensity(density);
60 return bm;
63 byte[] np = bm.getNinePatchChunk();
69 final Bitmap oldBitmap = bm;
70 bm = Bitmap.createScaledBitmap(oldBitmap, (int) (bm
[all...]
/frameworks/base/media/tests/omxjpegdecoder/
H A Domx_jpeg_decoder.h45 virtual bool onDecode(SkStream* stream, SkBitmap* bm, Mode mode);
51 SkBitmap* bm);
53 SkBitmap* bm);
54 void configBitmapSize(SkBitmap* bm, SkBitmap::Config pref, int width,
H A Domx_jpeg_decoder.cpp100 SkBitmap* bm, Mode mode) {
107 configBitmapSize(bm, getPrefConfig(k32Bit_SrcDepth, false), width, height);
115 if (!this->allocPixelRef(bm, NULL)) {
121 return decodeSource(decoder, source, bm);
141 const sp<MediaSource>& source, SkBitmap* bm) {
162 installPixelRef(buffer, decoder, bm);*/
164 // Copy pixels from buffer to bm.
165 // May need to check buffer->rawBytes() == bm->rawBytes().
166 CHECK_EQ(buffer->size(), bm->getSize());
167 memcpy(bm
99 onDecode(SkStream* stream, SkBitmap* bm, Mode mode) argument
140 decodeSource(sp<MediaSource> decoder, const sp<MediaSource>& source, SkBitmap* bm) argument
174 installPixelRef(MediaBuffer *buffer, sp<MediaSource> decoder, SkBitmap* bm) argument
185 configBitmapSize(SkBitmap* bm, SkBitmap::Config pref, int width, int height) argument
[all...]
H A Djpeg_decoder_bench.cpp35 virtual bool onDecode(SkStream* stream, SkBitmap* bm, Mode);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java263 Bitmap bm = BitmapFactory.decodeFileDescriptor(
265 return generateBitmap(bm, width, height);
292 Bitmap bm = BitmapFactory.decodeStream(is, null, options);
293 return generateBitmap(bm, width, height);
350 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, true);
351 if (bm != null) {
352 Drawable dr = new BitmapDrawable(mContext.getResources(), bm);
369 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, false);
370 if (bm != null) {
371 Drawable dr = new BitmapDrawable(mContext.getResources(), bm);
715 generateBitmap(Bitmap bm, int width, int height) argument
[all...]
H A DActivityManagerNative.java457 ActivityManager.TaskThumbnails bm = getTaskThumbnails(id);
459 if (bm != null) {
461 bm.writeToParcel(reply, 0);
2028 ActivityManager.TaskThumbnails bm = null;
2030 bm = ActivityManager.TaskThumbnails.CREATOR.createFromParcel(reply);
2034 return bm;
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapTest.java86 Bitmap bm = Bitmap.createBitmap(colors, 10, 10,
90 bm.getPixels(pixels, 0, 10, 0, 0, 10, 10);
92 int p = bm.getPixel(i % 10, i / 10);
97 int p = bm.getPixel(i % 10, i / 10);
112 Bitmap bm = Bitmap.createBitmap(colors, 10, 10, Bitmap.Config.RGB_565);
115 bm.getPixels(pixels, 0, 10, 0, 0, 10, 10);
117 int p = bm.getPixel(i % 10, i / 10);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java773 Bitmap bm = BitmapFactory.decodeResourceStream(res, value, is, pad, opts);
774 if (bm != null) {
775 byte[] np = bm.getNinePatchChunk();
780 return drawableFromBitmap(res, bm, np, pad, srcName);
880 Bitmap bm = BitmapFactory.decodeFile(pathName);
881 if (bm != null) {
882 return drawableFromBitmap(null, bm, null, null, pathName);
962 private static Drawable drawableFromBitmap(Resources res, Bitmap bm, byte[] np, argument
966 return new NinePatchDrawable(res, bm, np, pad, srcName);
969 return new BitmapDrawable(res, bm);
[all...]
H A DBitmapDrawable.java496 Bitmap bm = mBitmap;
497 return (bm == null || bm.hasAlpha() || mBitmapState.mPaint.getAlpha() < 255) ?
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsHelper.java83 IBackupManager bm = IBackupManager.Stub.asInterface(
85 if (bm != null) {
86 bm.setAutoRestore(enabled);
/frameworks/base/core/java/android/text/
H A DTextLine.java220 Bitmap bm = null;
227 bm = Layout.EMOJI_FACTORY.getBitmapFromAndroidPua(codept);
235 if (j == runLimit || codept == '\t' || bm != null) {
241 } else if (bm != null) {
243 float bitmapHeight = bm.getHeight();
245 float width = bm.getWidth() * scale;
252 c.drawBitmap(bm, null, emojiRect, mPaint);
315 Bitmap bm = null;
322 bm = Layout.EMOJI_FACTORY.getBitmapFromAndroidPua(codept);
330 if (j == runLimit || codept == '\t' || bm !
[all...]
H A DStaticLayout.java320 Bitmap bm = EMOJI_FACTORY.getBitmapFromAndroidPua(emoji);
322 if (bm != null) {
331 float wid = bm.getWidth() * -whichPaint.ascent() / bm.getHeight();
/frameworks/base/core/jni/
H A DTime.cpp59 int64_t bm = b.toMillis(false /* use isDst */); local
60 int64_t diff = am-bm;
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DActivityTestMain.java49 private void addThumbnail(LinearLayout container, Bitmap bm, argument
53 if (bm != null) {
54 iv.setImageBitmap(bm);
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DTestService.java803 Bitmap bm = Bitmap.createBitmap(16, 16, Bitmap.Config.ARGB_8888);
822 Bitmap bm = Bitmap.createBitmap(16, 16, Bitmap.Config.ARGB_8888);
823 bm.recycle();
842 Bitmap bm = BitmapFactory.decodeResource(mContext.getResources(),
862 Bitmap bm = BitmapFactory.decodeResource(mContext.getResources(),
864 bm.recycle();
883 Bitmap bm = BitmapFactory.decodeResource(mContext.getResources(),
903 Bitmap bm = BitmapFactory.decodeResource(mContext.getResources(),
905 bm.recycle();
924 Bitmap bm
[all...]
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp92 SkBitmapRegionDecoder *bm = new SkBitmapRegionDecoder(decoder, stream, width, height); local
94 return GraphicsJNI::createBitmapRegionDecoder(env, bm);
/frameworks/base/core/java/android/provider/
H A DContacts.java641 Bitmap bm = stream != null ? BitmapFactory.decodeStream(stream, null, options) : null;
642 if (bm == null) {
643 bm = loadPlaceholderPhoto(placeholderImageResource, context, options);
645 return bm;
H A DMediaStore.java726 Bitmap bm = BitmapFactory.decodeFile(imagePath);
727 String ret = insertImage(cr, bm, name, description);
728 bm.recycle();
/frameworks/base/core/java/android/widget/
H A DImageView.java371 * @param bm The bitmap to set
374 public void setImageBitmap(Bitmap bm) { argument
377 setImageDrawable(new BitmapDrawable(mContext.getResources(), bm));
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java114 BackupManager bm = new BackupManager(mContext);
115 bm.dataChanged();
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java3757 IBackupManager bm = IBackupManager.Stub.asInterface(
3759 bm.agentDisconnected(app.info.packageName);
10284 IBackupManager bm = IBackupManager.Stub.asInterface(
10286 bm.agentDisconnected(app.info.packageName);
11895 IBackupManager bm = IBackupManager.Stub.asInterface(
11897 bm.agentConnected(agentPackageName, agent);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java5193 IBackupManager bm = IBackupManager.Stub.asInterface(
5195 if (bm != null) {
5199 bm.restoreAtInstall(res.pkg.applicationInfo.packageName, token);

Completed in 2799 milliseconds

12