/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/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/webkit/Source/WebCore/rendering/svg/ |
SVGResourcesCache.cpp | 37 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.begin(); it != end; ++it [all...] |
SVGResourcesCache.h | 60 HashMap<RenderObject*, SVGResources*> m_cache; member in class:WebCore::SVGResourcesCache
|
/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/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/WebKit/android/WebCoreSupport/ |
WebCache.h | 48 net::HttpCache* cache() { return m_cache.get(); } 71 OwnPtr<net::HttpCache> m_cache; member in class:android::WebCache
|
WebCache.cpp | 115 m_cache = new net::HttpCache(m_hostResolver.get(), 143 net::HttpNetworkSession* session = m_cache->GetSession(); 146 m_cache->CloseAllConnections(); 158 m_cache->CloseIdleConnections(); 168 int code = m_cache->GetBackend(&m_cacheBackend, &m_doomAllEntriesCallback); 231 int code = m_cache->GetBackend(&m_cacheBackend, &m_openEntryCallback);
|
/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/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/platform/graphics/texmap/ |
TextureMapperNode.cpp | 135 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;
|
TextureMapperNode.h | 248 TextureMapperCache* m_cache; member in class:WebCore::TextureMapperNode
|
/external/emma/core/java12/com/vladium/emma/report/html/ |
ReportGenerator.java | 506 final boolean embedSrcFile = deeper && srcFileAvailable (item, m_cache); 594 embedSrcFile (item, page, lineAnchorIDMap, m_cache); [all...] |
/external/emma/lib/ |
emma.jar | |