HomeSort by relevance Sort by last modified time
    Searched refs:Images (Results 26 - 50 of 85) sorted by null

12 3 4

  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/ui/
ImageGridFragment.java 44 import com.example.android.bitmapfun.provider.Images;
53 * cache is retained over configuration changes like orientation change so the images are populated
84 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
200 * transparent ActionBar and don't want the real top row of images to start off covered by it.
227 return Images.imageThumbUrls.length + mNumColumns;
233 null : Images.imageThumbUrls[position - mNumColumns];
287 mImageFetcher.loadImage(Images.imageThumbUrls[position - mNumColumns], imageView);
ImageDetailActivity.java 38 import com.example.android.bitmapfun.provider.Images;
44 private static final String IMAGE_CACHE_DIR = "images";
60 // Fetch screen height and width, to use as our max size when loading images as this
67 // For this sample we'll use half of the longest width to resize our images. As the
78 // The ImageFetcher takes care of loading images into our ImageView children asynchronously
84 mAdapter = new ImagePagerAdapter(getSupportFragmentManager(), Images.imageUrls.length);
168 * Called by the ViewPager child fragments to load images via the one ImageFetcher
194 return ImageDetailFragment.newInstance(Images.imageUrls[position]);
  /external/chromium/chrome/browser/history/
top_sites_cache.h 31 void SetThumbnails(const URLToImagesMap& images);
32 const URLToImagesMap& images() const { return images_; } function in class:history::TopSitesCache
41 Images* GetImage(const GURL& url);
100 // The images. These map from canonical url to image.
top_sites_database.cc 114 Images thumbnail;
145 const Images& thumbnail) {
161 const MostVisitedURL& url, const Images& thumbnail) {
189 const Images& thumbnail) {
275 Images* thumbnail) {
history_types.h 602 struct Images {
603 Images();
604 ~Images();
642 typedef std::map<GURL, Images> URLToImagesMap;
history_types.cc 332 // Images ---------------------------------------------------------------------
334 Images::Images() {}
336 Images::~Images() {}
  /external/llvm/lib/Target/R600/
AMDILDeviceInfo.h 38 Images = 0x6, ///< Images are supported or not.
  /packages/apps/Browser/src/com/android/browser/
Bookmarks.java 31 import android.provider.BrowserContract.Images;
208 // The Images update will insert if it doesn't exist
210 values.put(Images.FAVICON, os.toByteArray());
220 values.put(Images.URL, iurl);
221 cr.update(BrowserContract.Images.CONTENT_URI, values, null, null);
DownloadTouchIcon.java 38 import android.provider.BrowserContract.Images;
190 values.put(Images.TOUCH_ICON, os.toByteArray());
193 values.put(Images.URL, mCursor.getString(0));
194 mContentResolver.update(Images.CONTENT_URI, values, null, null);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
BucketHelper.java 9 import android.provider.MediaStore.Images;
10 import android.provider.MediaStore.Images.ImageColumns;
35 // "album" to be the collection of images/videos which have the same value
69 // bucket info from the Images and Video tables and then merge them
85 // When query from the Images or Video tables, we only need to group by BUCKET_ID.
128 jc, resolver, Images.Media.EXTERNAL_CONTENT_URI, buckets);
211 resolver, Images.Media.EXTERNAL_CONTENT_URI, bucketId);
SecureAlbum.java 22 import android.provider.MediaStore.Images;
37 private int mMinImageId = Integer.MAX_VALUE; // the smallest id of images
38 private int mMaxImageId = Integer.MIN_VALUE; // the biggest id in images
49 {Images.Media.EXTERNAL_CONTENT_URI, Video.Media.EXTERNAL_CONTENT_URI};
62 mShowUnlockItem = (!isCameraBucketEmpty(Images.Media.EXTERNAL_CONTENT_URI)
170 Images.Media.EXTERNAL_CONTENT_URI, mMinImageId, mMaxImageId);
LocalAlbum.java 25 import android.provider.MediaStore.Images;
26 import android.provider.MediaStore.Images.ImageColumns;
41 // The media items need to be all images or all videos, but not both.
74 mBaseUri = Images.Media.EXTERNAL_CONTENT_URI;
104 return MediaStore.Images.Media.EXTERNAL_CONTENT_URI.buildUpon()
175 baseUri = Images.Media.EXTERNAL_CONTENT_URI;
  /packages/apps/LegacyCamera/src/com/android/camera/
Thumbnail.java 27 import android.provider.MediaStore.Images;
28 import android.provider.MediaStore.Images.ImageColumns;
165 bitmap = Images.Thumbnails.getThumbnail(resolver, image.id,
166 Images.Thumbnails.MINI_KIND, null);
196 Uri baseUri = Images.Media.EXTERNAL_CONTENT_URI;
MenuHelper.java 28 import android.provider.MediaStore.Images;
150 Uri target = Images.Media.EXTERNAL_CONTENT_URI.buildUpon()
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 33 import android.provider.MediaStore.Images;
34 import android.provider.MediaStore.Images.Thumbnails;
91 boolean wantMini = (kind == Images.Thumbnails.MINI_KIND);
142 if (kind == Images.Thumbnails.MICRO_KIND) {
178 if (kind == Images.Thumbnails.MINI_KIND) {
189 } else if (kind == Images.Thumbnails.MICRO_KIND) {
  /frameworks/base/core/java/android/provider/
MediaStore.java 523 * This class is used internally by Images.Thumbnails and Video.Thumbnails, it's not intended
603 : Images.Media.EXTERNAL_CONTENT_URI);
696 * Contains meta data for all available images.
698 public static final class Images {
    [all...]
DrmStore.java 84 public interface Images extends Columns {
86 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/images");
156 contentUri = DrmStore.Images.CONTENT_URI;
  /external/webkit/Source/WebCore/inspector/front-end/
heapProfiler.css 33 content: url(Images/profileIcon.png);
37 content: url(Images/profileSmallIcon.png);
233 background-image: url(Images/statusbarBackground.png);
255 -webkit-mask-image: url(Images/helpButtonGlyph.png);
  /frameworks/base/tools/aapt/
Android.mk 25 Images.cpp \
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImage.java 27 import android.provider.MediaStore.Images;
173 Images.Thumbnails.MICRO_KIND, null, false);
ImageList.java 22 import android.provider.MediaStore.Images.Media;
  /packages/apps/Gallery2/src/com/android/camera/
Storage.java 27 import android.provider.MediaStore.Images;
28 import android.provider.MediaStore.Images.ImageColumns;
122 uri = resolver.insert(Images.Media.EXTERNAL_CONTENT_URI, values);
  /packages/apps/Mms/src/com/android/mms/model/
VideoModel.java 28 import android.provider.MediaStore.Images;
107 path = c.getString(c.getColumnIndexOrThrow(Images.Media.DATA));
114 Images.Media.MIME_TYPE));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 203 values.put(MediaStore.Images.ImageColumns.DATA, mImageFilePath);
204 values.put(MediaStore.Images.ImageColumns.TITLE, mImageFileName);
205 values.put(MediaStore.Images.ImageColumns.DISPLAY_NAME, mImageFileName);
206 values.put(MediaStore.Images.ImageColumns.DATE_TAKEN, mImageTime);
207 values.put(MediaStore.Images.ImageColumns.DATE_ADDED, mImageTime);
208 values.put(MediaStore.Images.ImageColumns.DATE_MODIFIED, mImageTime);
209 values.put(MediaStore.Images.ImageColumns.MIME_TYPE, "image/png");
210 values.put(MediaStore.Images.ImageColumns.WIDTH, mImageWidth);
211 values.put(MediaStore.Images.ImageColumns.HEIGHT, mImageHeight);
212 Uri uri = resolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Images_ThumbnailsTest.java 31 import android.provider.MediaStore.Images.Media;
32 import android.provider.MediaStore.Images.Thumbnails;
207 mContentResolver.delete(MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,
208 MediaStore.Images.Thumbnails.IMAGE_ID + "=?", new String[]{ "" + imgid});

Completed in 627 milliseconds

12 3 4