Searched refs:m_cache (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/platform/text/
H A DAtomicStringKeyedMRUCache.h43 for (size_t i = 0; i < m_cache.size(); ++i) {
44 if (m_cache[i].first == key) {
46 if (foundIndex + 1 < m_cache.size()) {
47 Entry entry = m_cache[foundIndex];
48 m_cache.remove(foundIndex);
49 foundIndex = m_cache.size();
50 m_cache.append(entry);
52 return m_cache[foundIndex].second;
55 if (m_cache.size() == capacity)
56 m_cache
68 Cache m_cache; member in class:WebCore::AtomicStringKeyedMRUCache
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DCachedTranscendentalFunction.h49 : m_cache(0)
55 if (m_cache)
56 fastFree(m_cache);
61 if (UNLIKELY(!m_cache))
63 CacheEntry* entry = &m_cache[hash(operand)];
77 m_cache = static_cast<CacheEntry*>(fastMalloc(s_cacheSize * sizeof(CacheEntry)));
79 m_cache[x].operand = NaN;
80 m_cache[x].result = NaN;
98 CacheEntry* m_cache; member in class:JSC::CachedTranscendentalFunction
H A DDateInstanceCache.h65 m_cache[i].key = NaN;
87 CacheEntry& lookup(double d) { return m_cache[WTF::FloatHash<double>::hash(d) & (cacheSize - 1)]; }
89 FixedArray<CacheEntry, cacheSize> m_cache; member in class:JSC::DateInstanceCache
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGResourcesCache.cpp37 deleteAllValues(m_cache);
44 ASSERT(!m_cache.contains(object));
57 m_cache.set(object, resources);
74 if (!m_cache.contains(object))
77 SVGResources* resources = m_cache.get(object);
87 delete m_cache.take(object);
108 if (!cache->m_cache.contains(renderer))
111 return cache->m_cache.get(renderer);
162 HashMap<RenderObject*, SVGResources*>::iterator end = cache->m_cache.end();
163 for (HashMap<RenderObject*, SVGResources*>::iterator it = cache->m_cache
[all...]
H A DSVGResourcesCache.h60 HashMap<RenderObject*, SVGResources*> m_cache; member in class:WebCore::SVGResourcesCache
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DNodeSequence.java59 private IteratorCache m_cache; field in class:NodeSequence
66 NodeVector nv = (m_cache != null) ? m_cache.getVector() : null;
77 return m_cache;
106 if (m_cache != null) {
107 complete = m_cache.isComplete();
121 m_cache.setCacheComplete(true);
544 if (oldNode != node && m_cache.useCount() > 1) {
564 m_cache = newCache;
631 if (m_cache !
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DSourceProvider.h46 , m_cache(cache ? cache : new SourceProviderCache)
53 delete m_cache;
67 SourceProviderCache* cache() const { return m_cache; }
75 SourceProviderCache* m_cache; member in class:JSC::SourceProvider
/external/webkit/Source/WebCore/page/
H A DGeolocation.h137 : m_cache(GeolocationPositionCache::instance())
139 m_cache->addUser();
143 m_cache->removeUser();
145 void setCachedPosition(Geoposition* cachedPosition) { m_cache->setCachedPosition(cachedPosition); }
146 Geoposition* cachedPosition() { return m_cache->cachedPosition(); }
148 GeolocationPositionCache* m_cache; member in class:WebCore::Geolocation::PositionCacheWrapper
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebCache.h48 net::HttpCache* cache() { return m_cache.get(); }
70 OwnPtr<net::HttpCache> m_cache; member in class:android::WebCache
H A DWebCache.cpp115 m_cache = new net::HttpCache(m_hostResolver.get(),
143 m_cache->CloseIdleConnections();
153 int code = m_cache->GetBackend(&m_cacheBackend, &m_doomAllEntriesCallback);
216 int code = m_cache->GetBackend(&m_cacheBackend, &m_openEntryCallback);
/external/emma/core/java12/com/vladium/emma/rt/
H A DClassPathProcessorST.java156 if (cacheClassDef && (m_cache != null))
161 m_cache.put (className, new ClassPathCacheEntry (bytes, srcURL));
256 if (cacheClassDef && (m_cache != null))
261 m_cache.put (className, new ClassPathCacheEntry (bytes, srcURL));
298 m_cache = cache; // can be null
382 private final Map /* classJavaName:String -> ClassPathCacheEntry */ m_cache; // can be null field in class:ClassPathProcessorST
H A DInstrClassLoader.java60 m_cache = cache; // can be null
181 final boolean useClassCache = (m_cache != null);
182 final ClassPathCacheEntry entry = useClassCache ? (ClassPathCacheEntry) m_cache.remove (name) : null;
447 private final Map /* classJavaName:String -> ClassPathCacheEntry */ m_cache; // can be null field in class:InstrClassLoader
H A DAppRunner.java741 generator.process (mdataSnashot, cdataSnapshot, m_cache, m_properties);
765 m_cache = null;
796 m_cache = cache;
820 private SourcePathCache m_cache; field in class:AppRunner.AppRunnerExitHook
/external/emma/core/java12/com/vladium/emma/report/
H A DAbstractReportGenerator.java66 m_cache = cache;
228 m_cache = null;
241 protected SourcePathCache m_cache; field in class:AbstractReportGenerator
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.cpp135 if (!root->m_cache)
136 root->m_cache = new TextureMapperCache;
137 return root->m_cache;
285 , m_cache(0)
479 opt.cache = m_cache;
486 m_cache->purge();
694 if (m_cache)
695 delete m_cache;
H A DTextureMapperNode.h248 TextureMapperCache* m_cache; member in class:WebCore::TextureMapperNode
/external/emma/core/java12/com/vladium/emma/report/html/
H A DReportGenerator.java506 final boolean embedSrcFile = deeper && srcFileAvailable (item, m_cache);
594 embedSrcFile (item, page, lineAnchorIDMap, m_cache);
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 1145 milliseconds