Home
last modified time | relevance | path

Searched refs:cacheHash (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentSharedObjectPool.cpp74 unsigned cacheHash = cacheKey.hash(); in cachedShareableElementDataWithAttributes() local
76 …ShareableElementDataCache::iterator cacheIterator = m_shareableElementDataCache.add(cacheHash, nul… in cachedShareableElementDataWithAttributes()
78 cacheHash = 0; in cachedShareableElementDataWithAttributes()
81 if (cacheHash && cacheIterator->value) in cachedShareableElementDataWithAttributes()
86 if (!cacheHash || cacheIterator->value) in cachedShareableElementDataWithAttributes()
DPresentationAttributeStyle.cpp164 unsigned cacheHash = computePresentationAttributeCacheHash(cacheKey); in computePresentationAttributeStyle() local
167 if (cacheHash) { in computePresentationAttributeStyle()
168 cacheIterator = presentationAttributeCache().add(cacheHash, nullptr).iterator; in computePresentationAttributeStyle()
170 cacheHash = 0; in computePresentationAttributeStyle()
176 if (cacheHash && cacheIterator->value) { in computePresentationAttributeStyle()
188 if (!cacheHash || cacheIterator->value) in computePresentationAttributeStyle()
200 presentationAttributeCache().set(cacheHash, newEntry.release()); in computePresentationAttributeStyle()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolver.cpp1347 …unsigned cacheHash = matchResult.isCacheable ? computeMatchedPropertiesHash(matchResult.matchedPro… in applyMatchedProperties() local
1351 …if (cacheHash && (cachedMatchedProperties = m_matchedPropertiesCache.find(cacheHash, state, matchR… in applyMatchedProperties()
1433 …if (!cachedMatchedProperties && cacheHash && MatchedPropertiesCache::isCacheable(element, state.st… in applyMatchedProperties()
1435 m_matchedPropertiesCache.add(state.style(), state.parentStyle(), cacheHash, matchResult); in applyMatchedProperties()