HomeSort by relevance Sort by last modified time
    Searched refs:Bitmap (Results 751 - 775 of 893) sorted by null

<<313233343536

  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 4 import android.graphics.Bitmap;
64 mOptionsARGB.inPreferredConfig = Bitmap.Config.ARGB_8888;
  /cts/tests/tests/content/src/android/content/cts/
ContextWrapperTest.java 38 import android.graphics.Bitmap;
284 // set Wallpaper by contextWrapper#setWallpaper(Bitmap)
285 Bitmap bitmap = Bitmap.createBitmap(20, 30, Bitmap.Config.RGB_565); local
291 mContextWrapper.setWallpaper(bitmap);
    [all...]
  /external/chromium/chrome/common/
common_param_traits_unittest.cc 76 // Tests bitmap serialization.
77 TEST(IPCMessageTest, Bitmap) {
78 SkBitmap bitmap; local
80 bitmap.setConfig(SkBitmap::kARGB_8888_Config, 10, 5);
81 bitmap.allocPixels();
82 memset(bitmap.getPixels(), 'A', bitmap.getSize());
85 IPC::ParamTraits<SkBitmap>::Write(&msg, bitmap);
91 EXPECT_EQ(bitmap.config(), output.config());
92 EXPECT_EQ(bitmap.width(), output.width())
    [all...]
  /frameworks/base/core/java/android/app/
IActivityManager.java 33 import android.graphics.Bitmap;
97 Bitmap thumbnail, CharSequence description) throws RemoteException;
107 public Bitmap getTaskTopThumbnail(int taskId) throws RemoteException;
118 Bitmap thumbnail, CharSequence description) throws RemoteException;
    [all...]
  /frameworks/base/core/java/android/provider/
Contacts.java 26 import android.graphics.Bitmap;
600 * Opens an InputStream for the person's photo and returns the photo as a Bitmap.
624 * Opens an InputStream for the person's photo and returns the photo as a Bitmap.
634 public static Bitmap loadContactPhoto(Context context, Uri person,
641 Bitmap bm = stream != null ? BitmapFactory.decodeStream(stream, null, options) : null;
648 private static Bitmap loadPlaceholderPhoto(int placeholderImageResource, Context context,
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Sampler.java 27 import android.graphics.Bitmap;
  /frameworks/base/media/java/android/media/
Metadata.java 19 import android.graphics.Bitmap;
144 public static final int VIDEO_FRAME = 19; // Bitmap
MiniThumbFile.java 19 import android.graphics.Bitmap;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
VideoEditorPreviewTest.java 24 import android.graphics.Bitmap;
570 final Bitmap mBitmap1 = mVideoEditorHelper.getBitmap(overlayFilename1,
577 final Bitmap mBitmap2 = mVideoEditorHelper.getBitmap(overlayFilename2,
666 final Bitmap mBitmap = mVideoEditorHelper.getBitmap(overlayFilename,
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
RecentsPanelView.java 31 import android.graphics.Bitmap;
117 Bitmap thumbnailViewImageBitmap;
506 private void updateThumbnail(ViewHolder h, Bitmap thumbnail, boolean show, boolean anim) {
514 // we haven't set a bitmap before, or if the bitmap size has changed
686 Bitmap bm = holder.thumbnailViewImageBitmap;
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
MeshTest.java 21 import android.graphics.Bitmap;
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
SimpleAppRS.java 28 import android.graphics.Bitmap;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Sampler.java 27 import android.graphics.Bitmap;
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoramaActivity.java 44 import android.graphics.Bitmap;
304 showFinalMosaic((Bitmap) msg.obj);
312 // Set the thumbnail bitmap here because mThumbnailView must be accessed
626 Bitmap bitmap = null;
627 bitmap = BitmapFactory.decodeByteArray(jpeg.data, 0, jpeg.data.length);
629 MSG_LOW_RES_FINAL_MOSAIC_READY, bitmap));
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripView.java 22 import android.graphics.Bitmap;
244 final Bitmap buffer = Bitmap.createBitmap(
245 width, (height * 3 / 2), Bitmap.Config.ARGB_8888);
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
UserManagerService.java 32 import android.graphics.Bitmap;
281 public void setUserIcon(int userId, Bitmap bitmap) {
289 writeBitmapLocked(info, bitmap);
303 public Bitmap getUserIcon(int userId) {
415 private void writeBitmapLocked(UserInfo info, Bitmap bitmap) {
427 if (bitmap.compress(Bitmap.CompressFormat.PNG, 100, os = new FileOutputStream(file))) {
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PanoramaModule.java 25 import android.graphics.Bitmap;
294 showFinalMosaic((Bitmap) msg.obj);
602 Bitmap bitmap = null;
603 bitmap = BitmapFactory.decodeByteArray(jpeg.data, 0, jpeg.data.length);
605 MSG_LOW_RES_FINAL_MOSAIC_READY, bitmap));
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/
PanoramaModule.java 25 import android.graphics.Bitmap;
296 showFinalMosaic((Bitmap) msg.obj);
601 Bitmap bitmap = null;
602 bitmap = BitmapFactory.decodeByteArray(jpeg.data, 0, jpeg.data.length);
604 MSG_LOW_RES_FINAL_MOSAIC_READY, bitmap));
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewGroupTest.java 26 import android.graphics.Bitmap;
31 import android.graphics.Bitmap.Config;
623 textView.setBackgroundDrawable(new BitmapDrawable(Bitmap.createBitmap(100, 100,
1372 Bitmap bitmap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888); local
    [all...]
ViewTest.java 28 import android.graphics.Bitmap;
1055 Bitmap bitmap = view.getDrawingCache(); local
2775 Bitmap bitmap = Bitmap.createBitmap(200, 300, Bitmap.Config.RGB_565); local
2866 Bitmap bitmap = Bitmap.createBitmap(200, 300, Bitmap.Config.RGB_565); local
2905 Bitmap bitmap = Bitmap.createBitmap(200, 300, Bitmap.Config.RGB_565); local
    [all...]
View_UsingViewsTest.java 25 import android.graphics.Bitmap;
141 Bitmap b = mEditText.getDrawingCache();
  /external/v8/src/
spaces.h 166 // Bitmap is a sequence of cells each containing fixed number of bits.
167 class Bitmap {
214 INLINE(static Bitmap* FromAddress(Address addr)) {
215 return reinterpret_cast<Bitmap*>(addr);
495 CODE_POINTER_ALIGN(MAP_POINTER_ALIGN(kHeaderSize + Bitmap::kSize));
499 // the marking bitmap is arranged in 32 bit chunks.
538 inline Bitmap* markbits() {
539 return Bitmap::FromAddress(address() + kHeaderSize);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/
AutoLockTest.java 24 import android.graphics.Bitmap;
    [all...]
  /external/skia/legacy/src/animator/
SkDisplayType.cpp 99 CASE_DRAW_NEW(Bitmap);
254 CASE_GET_DRAW_INFO(Bitmap);
421 DRAW_NAME("bitmap", SkType_Bitmap),
  /external/skia/src/animator/
SkDisplayType.cpp 99 CASE_DRAW_NEW(Bitmap);
254 CASE_GET_DRAW_INFO(Bitmap);
421 DRAW_NAME("bitmap", SkType_Bitmap),

Completed in 2123 milliseconds

<<313233343536