HomeSort by relevance Sort by last modified time
    Searched defs:mCache (Results 51 - 75 of 82) sorted by null

1 23 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 98 private Map<UiViewElementNode, Property[]> mCache =
155 mCache.clear();
158 Property[] properties = mCache.get(node);
169 mCache.put(node, properties);
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameManager.java 58 private BackingCache mCache;
294 mCache.setSize(bytes);
303 return mCache.getSize();
380 mCache.clear();
396 mCache = new BackingCacheNone();
399 mCache = new BackingCacheLru();
402 mCache = new BackingCacheLfu();
410 return mCache.fetchBacking(mode, access, dimensions, elemSize);
421 if (!backing.shouldCache() || !mCache.cacheBacking(backing)) {
424 //Log.i("FrameManager", "RM: Now have " + mBackings.size() + " backings (" + mCache.getSizeLeft() + ")")
    [all...]
  /frameworks/opt/bitmap/src/com/android/bitmap/
DecodeTask.java 55 private final BitmapCache mCache;
104 mCache = cache;
144 mInBitmap = mCache.poll();
190 mCache.offer(mInBitmap);
261 + mCache.toDebugString());
377 mCache.offer(mInBitmap);
444 mCache.put(mKey, result);
456 mCache.offer(mInBitmap);
  /frameworks/base/include/androidfw/
AssetManager.h 388 SortedVector<AssetDir::FileInfo> mCache;
  /frameworks/base/libs/hwui/
TessellationCache.h 167 LruCache<Description, Buffer*> mCache;
PathCache.h 244 return mCache.get(entry);
302 LruCache<PathDescription, PathTexture*> mCache;
  /frameworks/volley/src/com/android/volley/
RequestQueue.java 75 private final Cache mCache;
99 mCache = cache;
133 mCacheDispatcher = new CacheDispatcher(mCacheQueue, mNetworkQueue, mCache, mDelivery);
139 mCache, mDelivery);
170 return mCache;
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
MediaSetSource.java 130 private MediaItem mCache[] = new MediaItem[CACHE_SIZE];
155 items.toArray(mCache);
165 return mCache[index - mCacheStart].getContentUri();
172 return WidgetUtils.createWidgetBitmap(mCache[index - mCacheStart]);
182 Arrays.fill(mCache, null);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AccountAvatarDrawable.java 40 private final BitmapCache mCache;
57 mCache = cache;
170 final ReusableBitmap cached = mCache.get(contactRequest, true /* incrementRefCount */);
ContactDrawable.java 50 private BitmapCache mCache;
112 mCache = cache;
263 final ReusableBitmap cached = mCache.get(contactRequest, true /* incrementRefCount */);
  /external/doclava/src/com/google/doclava/
Converter.java 298 return mCache.values().toArray(new ClassInfo[mCache.size()]);
659 mCache.put(key, value);
667 Object r = mCache.get(k);
670 mCache.put(k, r);
676 protected HashMap<Object, Object> mCache = new HashMap<Object, Object>();
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 139 private CalendarColorCache mCache;
224 mCache = new CalendarColorCache(context, this);
327 colorSquare.setEnabled(mCache.hasColors(accountName, accountType));
347 if (!mCache.hasColors(accountName, accountType)) {
SelectCalendarsSyncAdapter.java 54 private CalendarColorCache mCache;
90 mCache = new CalendarColorCache(context, this);
217 return mCache.hasColors(mData[position].accountName, mData[position].accountType);
SelectCalendarsSimpleAdapter.java 84 private CalendarColorCache mCache;
114 mCache = new CalendarColorCache(context, this);
331 return mCache.hasColors(mData[position].accountName, mData[position].accountType);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
ScriptGraph.java 67 private final AllocationCache mCache = RenderScriptSingleton.getCache();
643 mCache.returnToCache(mOutputAllocation);
  /frameworks/base/core/java/android/widget/
RemoteViewsAdapter.java 79 private FixedSizeRemoteViewsCache mCache;
234 synchronized (adapter.mCache) {
235 adapter.mCache.commitTemporaryMetaData();
    [all...]
  /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...]
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
BasicBitmapDrawable.java 69 private final BitmapCache mCache;
97 mCache = cache;
212 final ReusableBitmap cached = mCache.get(key, true /* incrementRefCount */);
222 "CACHE MISS key=%s\ncache=%s", mCurrKey, mCache.toDebugString()));
293 mTask = new DecodeTask(mCurrKey, opts, factory, this, mCache);
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 285 private final ContentCache mCache;
296 mCache = cache;
309 synchronized(mCache) {
311 if ((count == 0) && mCache.mLruCache.get(mId) != (mCursor)) {
734 private final ContentCache mCache;
762 mCache = cache;
763 mName = mCache.mName;
767 mCache = null;
799 append(sb, "Cursors", mCache == null ? mCursorCount : mCache.size())
    [all...]
  /frameworks/minikin/libs/minikin/
Layout.cpp 123 LayoutCache() : mCache(kMaxEntries) {
124 mCache.setOnEntryRemovedListener(this);
128 mCache.clear();
132 Layout* layout = mCache.get(key);
137 mCache.put(key, layout);
149 LruCache<LayoutCacheKey, Layout*> mCache;
160 HbFaceCache() : mCache(kMaxEntries) {
161 mCache.setOnEntryRemovedListener(this);
169 LruCache<int32_t, hb_face_t*> mCache;
357 hb_face_t* face = cache.mCache.get(fontId)
    [all...]
  /frameworks/rs/cpp/
rsCppStructs.h     [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java     [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
rsCppStructs.h     [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
rsCppStructs.h     [all...]

Completed in 2561 milliseconds

1 23 4