Searched defs:bm (Results 1 - 11 of 11) 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/core/jni/
H A Dandroid_view_ViewRoot.cpp42 const SkBitmap& bm = canvas->getDevice()->accessBitmap(false); local
43 int height = bm.height();
H A DTime.cpp59 int64_t bm = b.toMillis(false /* use isDst */); local
60 int64_t diff = am-bm;
/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/graphics/java/android/graphics/
H A DBitmapFactory.java280 Bitmap bm = null;
284 bm = decodeStream(stream, null, opts);
287 If the exception happened on open, bm will be null.
298 return bm;
352 Bitmap bm = null;
359 bm = decodeResourceStream(res, value, is, null, opts);
362 If the exception happened on open, bm will be null.
363 If it happened on close, bm is still valid.
373 return bm;
457 Bitmap bm;
476 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/jni/android/graphics/
H A DBitmapRegionDecoder.cpp97 SkBitmapRegionDecoder *bm = new SkBitmapRegionDecoder(decoder, width, height); local
99 return GraphicsJNI::createBitmapRegionDecoder(env, bm);
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java238 Bitmap bm = BitmapFactory.decodeFileDescriptor(
244 if (bm != null) {
245 bm.setDensity(DisplayMetrics.DENSITY_DEVICE);
247 return bm;
255 Bitmap bm = BitmapFactory.decodeFileDescriptor(
262 return generateBitmap(context, bm, width, height);
280 Bitmap bm = BitmapFactory.decodeStream(is, null, null);
285 if (bm != null) {
286 bm.setDensity(DisplayMetrics.DENSITY_DEVICE);
288 return bm;
688 generateBitmap(Context context, Bitmap bm, int width, int height) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DImageView.java330 * @param bm The bitmap to set
333 public void setImageBitmap(Bitmap bm) { argument
336 setImageDrawable(new BitmapDrawable(mContext.getResources(), bm));
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java697 Bitmap bm = BitmapFactory.decodeResourceStream(res, value, is, pad, opts);
698 if (bm != null) {
699 byte[] np = bm.getNinePatchChunk();
704 return drawableFromBitmap(res, bm, np, pad, srcName);
800 Bitmap bm = BitmapFactory.decodeFile(pathName);
801 if (bm != null) {
802 return drawableFromBitmap(null, bm, null, null, pathName);
851 private static Drawable drawableFromBitmap(Resources res, Bitmap bm, byte[] np, argument
855 return new NinePatchDrawable(res, bm, np, pad, srcName);
858 return new BitmapDrawable(res, bm);
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java3479 Bitmap bm = BitmapFactory.decodeResource(
3482 mOverScrollBackground.setShader(new BitmapShader(bm,
4943 Bitmap bm = Bitmap.createBitmap(w, h, offscreenBitmapConfig());
4944 Canvas canvas = new Canvas(bm);
4952 mProxy.onBitmapChange(bm);
4964 public void onBitmapChange(Bitmap bm) {} argument

Completed in 337 milliseconds