HomeSort by relevance Sort by last modified time
    Searched refs:getBitmap (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/sonivox/jet_tools/JetCreator/
img_Paste.py 30 def getBitmap():
39 icon.CopyFromBitmap(getBitmap())
img_favicon.py 50 def getBitmap():
59 icon.CopyFromBitmap(getBitmap())
img_Copy.py 40 def getBitmap():
49 icon.CopyFromBitmap(getBitmap())
img_Find.py 74 def getBitmap():
83 icon.CopyFromBitmap(getBitmap())
  /packages/apps/Gallery/tests/src/com/android/camera/
BitmapManagerUnitTests.java 46 public Bitmap getBitmap() {
93 assertNotNull(t.getBitmap());
105 assertNull(t.getBitmap());
118 assertNotNull(t.getBitmap());
136 assertNotNull(t1.getBitmap());
138 assertNull(t2.getBitmap());
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
RecyclingBitmapDrawable.java 94 getBitmap().recycle();
99 Bitmap bitmap = getBitmap();
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DirectoryEntry.java 41 public Bitmap getBitmap(Resources res) {
  /external/jmonkeyengine/engine/src/android/com/jme3/texture/plugins/
AndroidImageLoader.java 14 Bitmap bitmap = imageInfo.getBitmap();
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 51 public Bitmap getBitmap() {
UploadedTexture.java 134 private Bitmap getBitmap() {
154 if (mWidth == UNSPECIFIED) getBitmap();
160 if (mWidth == UNSPECIFIED) getBitmap();
193 Bitmap bitmap = getBitmap();
212 Bitmap bitmap = getBitmap();
  /cts/tests/tests/widget/src/android/widget/cts/
ImageSwitcherTest.java 71 WidgetTestUtils.assertEquals(sceneryBitmap.getBitmap(), currViewBitmap.getBitmap());
79 WidgetTestUtils.assertEquals(testimageBitmap.getBitmap(), currViewBitmap.getBitmap());
109 currViewBitmap.getBitmap().getConfig());
110 WidgetTestUtils.assertEquals(testImageBitmap, currViewBitmap.getBitmap());
118 currViewBitmap.getBitmap().getConfig());
121 WidgetTestUtils.assertEquals(sceneryImageBitmap, currViewBitmap.getBitmap());
TextViewTest.java     [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 87 if (mBitmapDisplayed.getBitmap() != null) {
131 Bitmap old = mBitmapDisplayed.getBitmap();
166 if (bitmap.getBitmap() != null) {
168 setImageBitmap(bitmap.getBitmap(), bitmap.getRotation());
187 if (mBitmapDisplayed.getBitmap() == null) {
194 mBitmapDisplayed.getBitmap().getWidth(),
195 mBitmapDisplayed.getBitmap().getHeight());
297 if (mBitmapDisplayed.getBitmap() == null) {
367 if (mBitmapDisplayed.getBitmap() == null) {
379 if (mBitmapDisplayed.getBitmap() == null)
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
BaseAdapterWithImages.java 137 if (drawable != null && drawable.getBitmap() != null) {
139 drawable.getBitmap().recycle();
158 if (drawable != null && drawable.getBitmap() != null) {
159 drawable.getBitmap().recycle();
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 40 final Bitmap sourceBitmap = ((BitmapDrawable) source).getBitmap();
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
BitmapUtils.java 63 Bitmap bitmap = getBitmap(resources, resourceId);
75 static Bitmap getBitmap(Resources resources, int resourceId) {
  /packages/apps/Mms/tests/src/com/android/mms/util/
SmileyParserUnitTests.java 69 Bitmap bitmap1 = bitmapDrawable1.getBitmap();
70 Bitmap bitmap2 = bitmapDrawable2.getBitmap();
  /frameworks/volley/src/com/android/volley/toolbox/
ImageLoader.java 76 public Bitmap getBitmap(String url);
110 if (response.getBitmap() != null) {
111 view.setImageBitmap(response.getBitmap());
125 * data was available, response.getBitmap() will be non-null.
157 return mCache.getBitmap(cacheKey) != null;
194 Bitmap cachedBitmap = mCache.getBitmap(cacheKey);
348 public Bitmap getBitmap() {
NetworkImageView.java 165 if (response.getBitmap() != null) {
166 setImageBitmap(response.getBitmap());
  /external/skia/src/core/
SkBitmapHeap.h 29 SkBitmap* getBitmap() { return &fBitmap; }
59 virtual SkBitmap* getBitmap(int32_t slot) const = 0;
129 virtual SkBitmap* getBitmap(int32_t slot) const SK_OVERRIDE {
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 111 Bitmap thumbnail = item.thumbnail != null ? item.thumbnail.getBitmap() : null;
112 thumbnail = BrowserBookmarksPage.getBitmap(c,
116 && (item.thumbnail == null || item.thumbnail.getBitmap() != thumbnail)) {
  /cts/tests/tests/holo/src/android/holo/cts/
BitmapAssets.java 96 public static Bitmap getBitmap(Context context, String bitmapName) {
99 return ((BitmapDrawable) resources.getDrawable(resourceId)).getBitmap();
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmapDrawable.java 46 canvas.drawBitmap(realBitmapDrawable.getBitmap(), 0, 0, paint);
55 public android.graphics.Bitmap getBitmap() {
ShadowMediaStore.java 20 public static Bitmap getBitmap(ContentResolver cr, Uri url) {
  /cts/tests/tests/content/src/android/content/pm/cts/
ComponentInfoTest.java 82 WidgetTestUtils.assertEquals(((BitmapDrawable) d).getBitmap(),
83 ((BitmapDrawable) defaultIcon).getBitmap());
88 WidgetTestUtils.assertEquals(((BitmapDrawable) d).getBitmap(),
89 ((BitmapDrawable) d2).getBitmap());

Completed in 952 milliseconds

1 2 3 4 5 6 7