HomeSort by relevance Sort by last modified time
    Searched defs:mCache (Results 1 - 14 of 14) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
IconCache.java 47 private final HashMap<ComponentName, CacheEntry> mCache =
72 synchronized (mCache) {
73 mCache.remove(componentName);
81 synchronized (mCache) {
82 mCache.clear();
90 synchronized (mCache) {
103 synchronized (mCache) {
117 synchronized (mCache) {
132 CacheEntry entry = mCache.get(componentName);
136 mCache.put(componentName, entry)
    [all...]
  /packages/apps/Camera/src/com/android/camera/gallery/
BaseImageList.java 33 private final LruCache<Integer, BaseImage> mCache =
59 mCache.clear();
115 BaseImage result = mCache.get(i);
123 mCache.put(i, result);
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImageList.java 37 private final LruCache<Integer, BaseImage> mCache =
63 mCache.clear();
119 BaseImage result = mCache.get(i);
127 mCache.put(i, result);
163 mCache.clear();
203 BaseImage image = mCache.get(i);
206 mCache.put(i, image);
  /packages/apps/Mms/src/com/android/mms/data/
RecipientIdCache.java 33 private final Map<Long, String> mCache;
56 mCache = new HashMap<Long, String>();
77 sInstance.mCache.clear();
82 sInstance.mCache.put(id, number);
109 String number = sInstance.mCache.get(longId);
118 number = sInstance.mCache.get(longId);
148 String number2 = sInstance.mCache.get(recipientId);
158 sInstance.mCache.put(recipientId, number1);
192 for (Long id : sInstance.mCache.keySet()) {
193 Log.d(TAG, id + ": " + sInstance.mCache.get(id))
    [all...]
Conversation.java 636 private final HashSet<Conversation> mCache;
638 mCache = new HashSet<Conversation>(10);
650 for (Conversation c : sInstance.mCache) {
672 for (Conversation c : sInstance.mCache) {
694 if (sInstance.mCache.contains(c)) {
698 sInstance.mCache.add(c);
707 for (Conversation c : sInstance.mCache) {
709 sInstance.mCache.remove(c);
718 for (Conversation c : sInstance.mCache) {
730 Iterator<Conversation> iter = sInstance.mCache.iterator()
    [all...]
  /frameworks/base/media/libstagefright/include/
NuCachedSource2.h 78 PageCache *mCache;
  /frameworks/base/core/java/android/emoji/
EmojiFactory.java 60 private Map<Integer, WeakReference<Bitmap>> mCache;
74 mCache = new CustomLinkedHashMap<Integer, WeakReference<Bitmap>>();
102 WeakReference<Bitmap> cache = mCache.get(pua);
109 mCache.put(pua, new WeakReference<Bitmap>(ret));
116 mCache.put(pua, new WeakReference<Bitmap>(ret));
  /frameworks/base/include/utils/
AssetManager.h 357 SortedVector<AssetDir::FileInfo> mCache;
ResourceTypes.h 474 char16_t** mCache;
    [all...]
  /build/tools/droiddoc/src/
Converter.java 283 return (ClassInfo[])mCache.values().toArray(new ClassInfo[mCache.size()]);
666 mCache.put(key, value);
674 Object r = mCache.get(k);
677 mCache.put(k, r);
682 protected HashMap<Object,Object> mCache = new HashMap<Object,Object>();
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 720 // mCache maps from row number to the ImageBlock.
721 private final HashMap<Integer, ImageBlock> mCache;
761 mCache = new HashMap<Integer, ImageBlock>();
796 ImageBlock blk = mCache.get(row);
836 ImageBlock blk = mCache.get(row);
842 mCache.put(row, blk);
850 if (mCache.size() < CACHE_ROWS) {
856 for (int index : mCache.keySet()) {
859 if (mCache.get(index).hasPendingRequests()) {
876 return mCache.remove(bestIndex)
    [all...]
ViewImage.java 131 private BitmapCache mCache;
447 mCache.clear(); // Because the position number is changed.
486 Bitmap b = mCache.getBitmap(pos);
499 return !mCache.hasBitmap(pos + offset);
532 mCache.put(pos + offset, bitmap.getBitmap());
571 mCache = new BitmapCache(3);
572 mImageView.setRecycler(mCache);
596 v.setRecycler(mCache);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
QuickContactWindow.java     [all...]
  /frameworks/base/media/libstagefright/
MPEG4Extractor.cpp 116 uint8_t *mCache;
128 mCache(NULL) {
136 if (mCache) {
137 free(mCache);
138 mCache = NULL;
154 memcpy(data, &mCache[offset - mCachedOffset], size);
174 mCache = (uint8_t *)malloc(size);
176 if (mCache == NULL) {
183 ssize_t err = mSource->readAt(mCachedOffset, mCache, mCachedSize);
    [all...]

Completed in 274 milliseconds