HomeSort by relevance Sort by last modified time
    Searched refs:CacheEntry (Results 1 - 11 of 11) sorted by null

  /external/webkit/JavaScriptCore/runtime/
NumericStrings.h 38 CacheEntry<double>& entry = lookup(d);
48 CacheEntry<int>& entry = lookup(i);
60 struct CacheEntry {
65 CacheEntry<double>& lookup(double d) { return doubleCache[WTF::FloatHash<double>::hash(d) & (cacheSize - 1)]; }
66 CacheEntry<int>& lookup(int i) { return intCache[WTF::IntHash<int>::hash(i) & (cacheSize - 1)]; }
68 CacheEntry<double> doubleCache[cacheSize];
69 CacheEntry<int> intCache[cacheSize];
DateInstanceCache.h 70 CacheEntry& entry = lookup(d);
82 struct CacheEntry {
87 CacheEntry& lookup(double d) { return m_cache[WTF::FloatHash<double>::hash(d) & (cacheSize - 1)]; }
89 CacheEntry m_cache[cacheSize];
  /frameworks/base/core/java/com/google/android/mms/util/
AbstractCache.java 32 private final HashMap<K, CacheEntry<V>> mCacheMap;
35 mCacheMap = new HashMap<K, CacheEntry<V>>();
53 CacheEntry<V> cacheEntry = new CacheEntry<V>();
54 cacheEntry.value = value;
55 mCacheMap.put(key, cacheEntry);
71 CacheEntry<V> cacheEntry = mCacheMap.get(key);
72 if (cacheEntry != null)
    [all...]
  /frameworks/base/core/java/android/net/http/
CertificateValidatorCache.java 62 private HashMap<Integer, CacheEntry> mCacheMap;
126 mCacheMap = new HashMap<Integer, CacheEntry>();
140 CacheEntry cacheEntry = (CacheEntry)mCacheMap.get(
142 if (cacheEntry != null) {
143 if (!cacheEntry.expired()) {
144 rval = cacheEntry.has(domain, secureHash);
147 mSave += cacheEntry.mSave;
151 mCacheMap.remove(cacheEntry);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
IconCache.java 37 private static class CacheEntry {
47 private final HashMap<ComponentName, CacheEntry> mCache =
48 new HashMap<ComponentName, CacheEntry>(INITIAL_ICON_CACHE_CAPACITY);
91 CacheEntry entry = cacheLocked(application.componentName, info);
111 CacheEntry entry = cacheLocked(component, resolveInfo);
122 CacheEntry entry = cacheLocked(component, resolveInfo);
131 private CacheEntry cacheLocked(ComponentName componentName, ResolveInfo info) {
132 CacheEntry entry = mCache.get(componentName);
134 entry = new CacheEntry();
  /external/v8/src/
unicode.h 57 struct CacheEntry {
58 inline CacheEntry() : code_point_(0), value_(0) { }
59 inline CacheEntry(uchar code_point, bool value)
67 CacheEntry entries_[kSize];
82 struct CacheEntry {
83 inline CacheEntry() : code_point_(kNoChar), offset_(0) { }
84 inline CacheEntry(uchar code_point, signed offset)
93 CacheEntry entries_[kSize];
unicode-inl.h 36 CacheEntry entry = entries_[code_point & kMask];
44 entries_[code_point & kMask] = CacheEntry(code_point, result);
50 CacheEntry entry = entries_[c & kMask];
69 entries_[c & kMask] = CacheEntry(c, result[0] - c);
72 entries_[c & kMask] = CacheEntry(c, 0);
  /external/emma/core/java12/com/vladium/emma/report/
SourcePathCache.java 88 CacheEntry entry = (CacheEntry) m_packageCache.get (packageVMName);
92 entry = new CacheEntry (m_sourcepath.length);
125 private static final class CacheEntry
127 CacheEntry (final int size)
218 private final Map /* packageVMName:String->CacheEntry */ m_packageCache; // never null
  /external/chromium/third_party/icu/source/common/
serv.cpp 199 class CacheEntry : public UMemory {
210 ~CacheEntry() {
214 CacheEntry(const UnicodeString& _actualDescriptor, UObject* _service)
224 CacheEntry* ref() {
236 CacheEntry* unref() {
257 U_NAMESPACE_USE ((CacheEntry*)obj)->unref();
438 CacheEntry* result = NULL;
489 result = (CacheEntry*)serviceCache->get(currentDescriptor);
508 result = new CacheEntry(currentDescriptor, service);
  /external/icu4c/common/
serv.cpp 199 class CacheEntry : public UMemory {
210 ~CacheEntry() {
214 CacheEntry(const UnicodeString& _actualDescriptor, UObject* _service)
224 CacheEntry* ref() {
236 CacheEntry* unref() {
257 U_NAMESPACE_USE ((CacheEntry*)obj)->unref();
438 CacheEntry* result = NULL;
489 result = (CacheEntry*)serviceCache->get(currentDescriptor);
508 result = new CacheEntry(currentDescriptor, service);
  /external/emma/lib/
emma.jar 

Completed in 514 milliseconds