Searched defs:bm (Results 1 - 10 of 10) sorted by relevance

/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/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/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.java73 private void addThumbnail(LinearLayout container, Bitmap bm, argument
77 if (bm != null) {
78 iv.setImageBitmap(bm);
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp93 SkBitmapRegionDecoder *bm = new SkBitmapRegionDecoder(decoder, stream, width, height); local
95 return GraphicsJNI::createBitmapRegionDecoder(env, bm);
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java298 Bitmap bm = null;
302 bm = decodeStream(stream, null, opts);
305 If the exception happened on open, bm will be null.
317 return bm;
371 Bitmap bm = null;
378 bm = decodeResourceStream(res, value, is, null, opts);
381 If the exception happened on open, bm will be null.
382 If it happened on close, bm is still valid.
392 if (bm == null && opts != null && opts.inBitmap != null) {
396 return bm;
545 finishDecode(Bitmap bm, Rect outPadding, Options opts) argument
[all...]
/frameworks/base/media/tests/omxjpegdecoder/
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...]
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java279 Bitmap bm = BitmapFactory.decodeFileDescriptor(
281 return generateBitmap(context, bm, width, height);
308 Bitmap bm = BitmapFactory.decodeStream(is, null, options);
309 return generateBitmap(context, bm, width, height);
366 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, true);
367 if (bm != null) {
368 Drawable dr = new BitmapDrawable(mContext.getResources(), bm);
385 Bitmap bm = sGlobals.peekWallpaperBitmap(mContext, false);
386 if (bm != null) {
387 Drawable dr = new BitmapDrawable(mContext.getResources(), bm);
792 generateBitmap(Context context, Bitmap bm, int width, int height) argument
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java785 Bitmap bm = BitmapFactory.decodeResourceStream(res, value, is, pad, opts);
786 if (bm != null) {
787 byte[] np = bm.getNinePatchChunk();
792 int[] layoutBounds = bm.getLayoutBounds();
798 return drawableFromBitmap(res, bm, np, pad, layoutBoundsRect, srcName);
898 Bitmap bm = BitmapFactory.decodeFile(pathName);
899 if (bm != null) {
900 return drawableFromBitmap(null, bm, null, null, null, pathName);
980 private static Drawable drawableFromBitmap(Resources res, Bitmap bm, byte[] np, argument
984 return new NinePatchDrawable(res, bm, n
[all...]
/frameworks/base/core/java/android/widget/
H A DImageView.java415 * @param bm The bitmap to set
418 public void setImageBitmap(Bitmap bm) { argument
421 setImageDrawable(new BitmapDrawable(mContext.getResources(), bm));

Completed in 962 milliseconds