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

  /external/webkit/Source/WebCore/rendering/svg/
SVGResourcesCache.h 60 HashMap<RenderObject*, SVGResources*> m_cache; member in class:WebCore::SVGResourcesCache
  /external/webkit/Source/WebCore/platform/text/
AtomicStringKeyedMRUCache.h 43 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.remove(0)
68 Cache m_cache; member in class:WebCore::AtomicStringKeyedMRUCache
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
CachedTranscendentalFunction.h 49 : 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
DateInstanceCache.h 65 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/WebKit/android/WebCoreSupport/
WebCache.h 48 net::HttpCache* cache() { return m_cache.get(); }
71 OwnPtr<net::HttpCache> m_cache; member in class:android::WebCache
  /external/webkit/Source/JavaScriptCore/parser/
SourceProvider.h 46 , 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/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 156 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
InstrClassLoader.java 60 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
AppRunner.java 741 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
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 59 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 != null)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
AbstractReportGenerator.java 66 m_cache = cache;
228 m_cache = null;
241 protected SourcePathCache m_cache; field in class:AbstractReportGenerator
  /external/webkit/Source/WebCore/page/
Geolocation.h 137 : 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/WebCore/platform/graphics/texmap/
TextureMapperNode.h 248 TextureMapperCache* m_cache; member in class:WebCore::TextureMapperNode
  /external/emma/lib/
emma.jar 

Completed in 290 milliseconds