HomeSort by relevance Sort by last modified time
    Searched refs:BitmapFactory (Results 51 - 75 of 138) sorted by null

1 23 4 5 6

  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 674 InputStream is, String srcName, BitmapFactory.Options opts) {
695 if (opts == null) opts = new BitmapFactory.Options();
697 Bitmap bm = BitmapFactory.decodeResourceStream(res, value, is, pad, opts);
801 Bitmap bm = BitmapFactory.decodeFile(pathName);
    [all...]
NinePatchDrawable.java 241 final BitmapFactory.Options options = new BitmapFactory.Options();
254 bitmap = BitmapFactory.decodeResourceStream(r, value, is, padding, options);
  /frameworks/base/graphics/java/android/renderscript/
RenderScriptGL.java 22 import android.graphics.BitmapFactory;
Allocation.java 25 import android.graphics.BitmapFactory;
235 private static BitmapFactory.Options mBitmapOptions = new BitmapFactory.Options();
366 Bitmap b = BitmapFactory.decodeResource(res, id, mBitmapOptions);
Sampler.java 29 import android.graphics.BitmapFactory;
  /packages/apps/Gallery3D/src/com/cooliris/media/
PopupMenu.java 24 import android.graphics.BitmapFactory;
300 Bitmap background = BitmapFactory.decodeResource(resources, Res.drawable.popup);
302 Bitmap highlightSelected = BitmapFactory.decodeResource(resources, Res.drawable.popup_option_selected);
304 mTriangleBottom = BitmapFactory.decodeResource(resources, Res.drawable.popup_triangle_bottom);
Utils.java 36 import android.graphics.BitmapFactory;
271 * of 8 because BitmapFactory only honors sample size this way.
272 * For example, BitmapFactory downsamples an image by 2 even though the
275 public static int computeSampleSize(BitmapFactory.Options options,
293 public static int computeInitialSampleSize(BitmapFactory.Options options,
PhotoAppWidgetProvider.java 28 import android.graphics.BitmapFactory;
168 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
  /packages/wallpapers/Basic/src/com/android/wallpaper/nexus/
NexusRS.java 31 import android.graphics.BitmapFactory;
56 private final BitmapFactory.Options mOptionsARGB = new BitmapFactory.Options();
210 Bitmap b = BitmapFactory.decodeResource(mResources, id, mOptionsARGB);
  /frameworks/base/core/java/android/provider/
MediaStore.java 28 import android.graphics.BitmapFactory;
253 private static Bitmap getMiniThumbFromFile(Cursor c, Uri baseUri, ContentResolver cr, BitmapFactory.Options options) {
261 bitmap = BitmapFactory.decodeFileDescriptor(
314 BitmapFactory.Options options, Uri baseUri, boolean isVideo) {
326 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
362 bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
503 Bitmap bitmap = BitmapFactory.decodeStream(input);
523 Bitmap bm = BitmapFactory.decodeFile(imagePath);
720 BitmapFactory.Options options) {
752 int kind, BitmapFactory.Options options)
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 30 import android.graphics.BitmapFactory;
72 private BitmapFactory.Options sBitmapOptions = new BitmapFactory.Options();
  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 30 import android.graphics.BitmapFactory;
143 BitmapFactory.Options options) {
149 return BitmapFactory.decodeByteArray(data, 0, data.length, options);
161 BitmapFactory.Options options) {
165 return BitmapFactory.decodeResource(context.getResources(),
170 BitmapFactory.Options options) {
182 photoBm = BitmapFactory.decodeByteArray(photoData, 0,
ContactPhotoLoader.java 25 import android.graphics.BitmapFactory;
299 Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length, null);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AlphaBitmap.java 68 mBitmap = BitmapFactory.decodeStream(is);
BitmapMesh.java 56 mBitmap = BitmapFactory.decodeResource(getResources(),
ColorMatrixSample.java 46 mBitmap = BitmapFactory.decodeResource(context.getResources(),
Vertices.java 59 Bitmap bm = BitmapFactory.decodeResource(getResources(),
GLES20TriangleRenderer.java 30 import android.graphics.BitmapFactory;
142 bitmap = BitmapFactory.decodeStream(is);
StaticTriangleRenderer.java 33 import android.graphics.BitmapFactory;
193 bitmap = BitmapFactory.decodeStream(is);
TriangleRenderer.java 32 import android.graphics.BitmapFactory;
96 bitmap = BitmapFactory.decodeStream(is);
  /packages/wallpapers/Basic/src/com/android/wallpaper/fall/
FallRS.java 38 import android.graphics.BitmapFactory;
58 private final BitmapFactory.Options mOptionsARGB = new BitmapFactory.Options();
278 Bitmap b = BitmapFactory.decodeResource(mResources, id, mOptionsARGB);
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyRS.java 38 import android.graphics.BitmapFactory;
57 private final BitmapFactory.Options mOptionsARGB = new BitmapFactory.Options();
223 Bitmap b = BitmapFactory.decodeResource(mResources, id, mOptionsARGB);
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmokeRS.java 29 import android.graphics.BitmapFactory;
240 BitmapFactory.Options opts = new BitmapFactory.Options();
242 Bitmap in = BitmapFactory.decodeResource(mResources, id, opts);
  /development/apps/GraphicsLab/src/com/android/graphicslab/
GraphicsLab.java 74 Bitmap bm = BitmapFactory.decodeResource(getResources(),
213 Bitmap bm = BitmapFactory.decodeResource(getResources(),
  /packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetProvider.java 30 import android.graphics.BitmapFactory;
181 bitmap = BitmapFactory.decodeByteArray(data, 0,

Completed in 816 milliseconds

1 23 4 5 6