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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilter.h93 if (!m_cache)
94 m_cache = adoptRef(SkImageFilter::Cache::Create(1));
95 SkImageFilter::SetExternalCache(m_cache.get());
105 if (m_cache)
106 m_cache->remove(filter);
115 RefPtr<SkImageFilter::Cache> m_cache; member in class:WebCore::Filter
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DMatchedPropertiesCache.cpp66 Cache::iterator it = m_cache.find(hash);
67 if (it == m_cache.end())
96 Cache::AddResult addResult = m_cache.add(hash, nullptr);
109 m_cache.clear();
115 for (Cache::iterator it = m_cache.begin(); it != m_cache.end(); ++it) {
120 m_cache.removeAll(toRemove);
129 Cache::iterator it = m_cache.begin();
130 Cache::iterator end = m_cache.end();
141 m_cache
[all...]
H A DScopedStyleTree.cpp110 m_cache.clear();
161 m_cache.scopedResolver = enclosingScopedStyleResolverFor(scopingNode);
162 m_cache.nodeForScopedStyles = scopingNode;
177 m_cache.scopedResolver = scopedResolver;
178 m_cache.nodeForScopedStyles = &scopingNode;
186 if (m_cache.scopedResolver && m_cache.scopedResolver->scopingNode() == scopingNode)
187 m_cache.scopedResolver = m_cache.scopedResolver->parent();
188 m_cache
[all...]
H A DScopedStyleTree.h74 bool cacheIsValid(const ContainerNode* parent) const { return parent && parent == m_cache.nodeForScopedStyles; }
95 ScopedStyleCache m_cache; member in class:WebCore::ScopedStyleTree
103 return m_cache.scopedResolver;
H A DMatchedPropertiesCache.h69 Cache m_cache; member in class:WebCore::MatchedPropertiesCache
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontDataCache.cpp53 Cache::iterator result = m_cache.find(*platformData);
54 if (result == m_cache.end()) {
56 m_cache.set(*platformData, newValue);
80 return m_cache.contains(*fontPlatformData);
87 Cache::iterator it = m_cache.find(fontData->platformData());
88 ASSERT(it != m_cache.end());
89 if (it == m_cache.end())
100 Cache::iterator end = m_cache.end();
101 for (Cache::iterator fontData = m_cache.begin(); fontData != end; ++fontData) {
133 m_cache
[all...]
H A DFontDataCache.h93 Cache m_cache; member in class:WebCore::FontDataCache
/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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGResourcesCache.cpp43 ASSERT(!m_cache.contains(object));
54 SVGResources* resources = m_cache.set(object, newResources.release()).storedValue->value.get();
71 OwnPtr<SVGResources> resources = m_cache.take(object);
98 return resourcesCacheFromRenderObject(renderer)->m_cache.get(renderer);
188 CacheMap::iterator end = cache->m_cache.end();
189 for (CacheMap::iterator it = cache->m_cache.begin(); it != end; ++it) {
H A DSVGResourcesCache.h67 CacheMap m_cache; member in class:WebCore::SVGResourcesCache
/external/lldb/source/Target/
H A DMemory.cpp30 m_cache (),
46 m_cache.clear();
58 if (m_cache.empty())
78 BlockMap::iterator pos = m_cache.find (curr_addr);
79 if (pos != m_cache.end())
80 m_cache.erase(pos);
138 BlockMap::const_iterator pos = m_cache.find (curr_addr);
139 BlockMap::const_iterator end = m_cache.end ();
196 m_cache[curr_addr] = DataBufferSP (data_buffer_heap_ap.release());
/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/lldb/include/lldb/Target/
H A DMemory.h73 BlockMap m_cache; member in class:lldb_private::MemoryCache
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.h152 std::map<ObjCISA,ObjCLanguageRuntime::ClassDescriptorSP> m_cache; member in class:lldb_private::AppleObjCRuntimeV2::NonPointerISACache
206 Cache m_cache; member in class:lldb_private::AppleObjCRuntimeV2::TaggedPointerVendorRuntimeAssisted
H A DAppleObjCRuntimeV2.cpp2560 m_cache(),
2587 CacheIterator iterator = m_cache.find(slot),
2588 end = m_cache.end();
2604 m_cache[slot] = actual_class_descriptor_sp;
2617 m_cache(),
2630 auto cache_iter = m_cache.find(real_isa);
2631 if (cache_iter != m_cache.end())
2635 m_cache[real_isa] = descriptor_sp;
/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/valgrind/main/
H A DAndroid.mk151 coregrind/m_cache.c \
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 486 milliseconds