HomeSort by relevance Sort by last modified time
    Searched refs:mCache (Results 101 - 125 of 259) sorted by null

1 2 3 45 6 7 8 91011

  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
BaseModelUpdateTaskTestCase.java 186 private final HashMap<ComponentKey, CacheEntry> mCache = new HashMap<>();
197 CacheEntry entry = mCache.get(new ComponentKey(componentName, user));
209 mCache.put(new ComponentKey(key, Process.myUserHandle()), entry);
  /frameworks/av/media/libstagefright/include/
NuCachedSource2.h 112 PageCache *mCache;
  /frameworks/base/libs/hwui/
PatchCache.h 168 LruCache<PatchDescription, Patch*> mCache;
ProgramCache.cpp 523 mCache.clear();
534 auto iter = mCache.find(key);
536 if (iter == mCache.end()) {
539 mCache[key] = std::unique_ptr<Program>(program);
    [all...]
TextDropShadowCache.h 155 LruCache<ShadowText, ShadowTexture*> mCache;
GradientCache.h 165 LruCache<GradientCacheEntry, Texture*> mCache;
TessellationCache.h 197 LruCache<Description, Buffer*> mCache;
VectorDrawable.h 686 void markDirty() { mCache.dirty = true; }
687 bool isDirty() const { return mCache.dirty; }
760 Cache mCache;
763 = PropertyChangedListener(&mCache.dirty, &mStagingCache.dirty);
  /frameworks/base/services/core/java/com/android/server/content/
ContentService.java 123 synchronized (mService.mCache) {
124 mService.mCache.remove(userHandle);
142 @GuardedBy("mCache")
144 mCache = new SparseArray<>();
149 synchronized (mCache) {
151 mCache.clear();
244 synchronized (mCache) {
248 for (int i = 0; i < mCache.size(); i++) {
249 pw.println("User " + mCache.keyAt(i) + ":");
251 pw.println(mCache.valueAt(i))
    [all...]
  /system/tools/hidl/
Coordinator.cpp 70 auto it = mCache.find(fqName);
71 if (it != mCache.end()) {
82 mCache[fqName] = nullptr;
173 mCache[fqName] = ast;
178 mCache[fqName] = nullptr;
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 84 private CalendarColorCache mCache;
114 mCache = new CalendarColorCache(context, this);
331 return mCache.hasColors(mData[position].accountName, mData[position].accountType);
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)) {
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptGraph.java 67 private final AllocationCache mCache = RenderScriptSingleton.getCache();
643 mCache.returnToCache(mOutputAllocation);
  /external/doclava/src/com/google/doclava/
Converter.java 355 return mCache.values().toArray(new ClassInfo[mCache.size()]);
731 mCache.put(key, value);
739 Object r = mCache.get(k);
742 mCache.put(k, r);
748 protected HashMap<Object, Object> mCache = new HashMap<Object, Object>();
  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 528 mCache[i] = i;
529 mCache[i+256] = i;
530 mCache[i+512] = i;
531 mCache[i+768] = i;
538 LUT->copy1DFrom((void*)mCache);
557 mCache[offset + base + i] = lutValues[i];
  /frameworks/minikin/libs/minikin/
Layout.cpp 126 LayoutCache() : mCache(kMaxEntries) {
127 mCache.setOnEntryRemovedListener(this);
131 mCache.clear();
136 Layout* layout = mCache.get(key);
141 mCache.put(key, layout);
153 android::LruCache<LayoutCacheKey, Layout*> mCache;
    [all...]
  /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...]
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.10/
library-1.0.10.jar 
  /hardware/qcom/gps/msm8998/core/
SystemStatus.h 412 SystemStatusReports mCache;
  /hardware/qcom/gps/sdm845/core/
SystemStatus.h 412 SystemStatusReports mCache;
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardAdapter.java 75 private final IconCache mCache;
124 mCache = new IconCache(context);
466 holder.icon.setImageDrawable(mCache.getIcon(tile.icon));
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.18/
library-1.0.18.jar 
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeContext.java     [all...]
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp 213 uint8_t *mCache;
225 mCache(NULL) {
233 if (mCache) {
234 free(mCache);
235 mCache = NULL;
250 memcpy(data, &mCache[offset - mCachedOffset], size);
270 mCache = (uint8_t *)malloc(size);
272 if (mCache == NULL) {
279 ssize_t err = mSource->readAt(mCachedOffset, mCache, mCachedSize);
    [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp 421 : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
426 : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
637 if (mHeader != NULL && mCache != NULL) {
639 if (mCache[x] != NULL) {
640 free(mCache[x]);
641 mCache[x] = NULL;
644 free(mCache);
645 mCache = NULL;
731 if (mCache == NULL) {
742 mCache = (char16_t**)calloc(mHeader->stringCount, sizeof(char16_t*))
    [all...]

Completed in 1335 milliseconds

1 2 3 45 6 7 8 91011