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

1 2 3 4 5 6 7 8 91011

  /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());
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
RecyclingBitmapDrawable.java 99 getBitmap().recycle();
105 Bitmap bitmap = getBitmap();
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
RecyclingBitmapDrawable.java 99 getBitmap().recycle();
105 Bitmap bitmap = getBitmap();
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
RecyclingBitmapDrawable.java 99 getBitmap().recycle();
105 Bitmap bitmap = getBitmap();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapDrawableResource.java 24 return Util.getSize(drawable.getBitmap());
29 bitmapPool.put(drawable.getBitmap());
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DirectoryEntry.java 41 public Bitmap getBitmap(Resources res) {
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 51 public Bitmap getBitmap() {
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 51 public Bitmap getBitmap() {
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
BitmapTexture.java 51 public Bitmap getBitmap() {
  /cts/tests/tests/widget/src/android/widget/cts/
ImageSwitcherTest.java 72 WidgetTestUtils.assertEquals(sceneryBitmap.getBitmap(), currViewBitmap.getBitmap());
80 WidgetTestUtils.assertEquals(testimageBitmap.getBitmap(), currViewBitmap.getBitmap());
110 currViewBitmap.getBitmap().getConfig());
111 WidgetTestUtils.assertEquals(testImageBitmap, currViewBitmap.getBitmap());
119 currViewBitmap.getBitmap().getConfig());
122 WidgetTestUtils.assertEquals(sceneryImageBitmap, currViewBitmap.getBitmap());
  /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...]
  /external/chromium_org/third_party/skia/src/core/
SkDeviceLooper.h 37 const SkBitmap& getBitmap() const {
  /external/skia/src/core/
SkDeviceLooper.h 37 const SkBitmap& getBitmap() const {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ImageEncoder.java 55 Bitmap bitmap = input.getBitmap();
  /packages/apps/InCallUI/src/com/android/incallui/
InCallAnimationUtils.java 114 ((BitmapDrawable) from).getBitmap() != null);
116 ((BitmapDrawable) to).getBitmap() != null);
118 ((BitmapDrawable) from).getBitmap().equals(((BitmapDrawable) to).getBitmap()));
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 42 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) {
  /frameworks/support/v4/api21/android/support/v4/media/
MediaMetadataCompatApi21.java 30 public static Bitmap getBitmap(Object metadataObj, String key) {
31 return ((MediaMetadata)metadataObj).getBitmap(key);
  /frameworks/support/v4/java/android/support/v4/graphics/drawable/
RoundedBitmapDrawableFactory.java 79 if (drawable.getBitmap() == null) {
92 if (drawable.getBitmap() == null) {
  /packages/apps/Contacts/src/com/android/contacts/widget/
QuickContactImageView.java 48 if (mBitmapDrawable == null || mBitmapDrawable.getBitmap() == null
49 || mBitmapDrawable.getBitmap().hasAlpha()) {
  /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() {

Completed in 1479 milliseconds

1 2 3 4 5 6 7 8 91011