/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
StyleCustomFilterProgram.cpp | 40 if (m_cache) 41 m_cache->remove(this);
|
StyleCustomFilterProgramCache.cpp | 53 for (CacheMap::iterator iter = m_cache.begin(), end = m_cache.end(); iter != end; ++iter) 59 CacheMap::const_iterator iter = m_cache.find(programInfo); 60 return iter != m_cache.end() ? iter->value : 0; 71 ASSERT(m_cache.find(key) == m_cache.end()); 72 m_cache.set(key, program); 78 CacheMap::iterator iter = m_cache.find(programCacheKey(program)); 79 ASSERT_WITH_SECURITY_IMPLICATION(iter != m_cache.end()); 80 m_cache.remove(iter) [all...] |
StyleCustomFilterProgramCache.h | 59 CacheMap m_cache; member in class:WebCore::StyleCustomFilterProgramCache
|
StyleCustomFilterProgram.h | 60 ASSERT(!m_cache); 68 ASSERT(!m_cache); 150 void setCache(StyleCustomFilterProgramCache* cache) { m_cache = cache; } 151 bool inCache() const { return m_cache; } 164 , m_cache(0) 184 StyleCustomFilterProgramCache* m_cache; member in class:WebCore::StyleCustomFilterProgram
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
FontDataCache.cpp | 53 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.remove(fontData->platformData()) [all...] |
FontDataCache.h | 93 Cache m_cache; member in class:WebCore::FontDataCache
|
/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/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
ScopedStyleTree.cpp | 109 m_cache.clear(); 158 m_cache.scopedResolver = enclosingScopedStyleResolverFor(scopingNode); 159 m_cache.nodeForScopedStyles = scopingNode; 174 m_cache.scopedResolver = scopedResolver; 175 m_cache.nodeForScopedStyles = &scopingNode; 183 if (m_cache.scopedResolver && m_cache.scopedResolver->scopingNode() == scopingNode) 184 m_cache.scopedResolver = m_cache.scopedResolver->parent(); 185 m_cache.nodeForScopedStyles = scopingNode.parentOrShadowHostNode() [all...] |
MatchedPropertiesCache.cpp | 66 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(); 118 Cache::iterator it = m_cache.begin(); 119 Cache::iterator end = m_cache.end(); 131 m_cache.remove(toRemove[i]);
|
ScopedStyleTree.h | 74 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;
|
MatchedPropertiesCache.h | 68 Cache m_cache; member in class:WebCore::MatchedPropertiesCache
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGResourcesCache.h | 66 CacheMap m_cache; member in class:WebCore::SVGResourcesCache
|
SVGResourcesCache.cpp | 43 ASSERT(!m_cache.contains(object)); 54 SVGResources* resources = m_cache.set(object, newResources.release()).iterator->value.get(); 71 OwnPtr<SVGResources> resources = m_cache.take(object); 100 return resourcesCacheFromRenderObject(renderer)->m_cache.get(renderer); 190 CacheMap::iterator end = cache->m_cache.end(); 191 for (CacheMap::iterator it = cache->m_cache.begin(); it != end; ++it) {
|
/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/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 | |