Home
last modified time | relevance | path

Searched refs:cacheIterator (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentSharedObjectPool.cpp76 …ShareableElementDataCache::iterator cacheIterator = m_shareableElementDataCache.add(cacheHash, nul… in cachedShareableElementDataWithAttributes() local
77 if (cacheIterator->value && cacheIterator->value->key != cacheKey) in cachedShareableElementDataWithAttributes()
81 if (cacheHash && cacheIterator->value) in cachedShareableElementDataWithAttributes()
82 elementData = cacheIterator->value->value; in cachedShareableElementDataWithAttributes()
86 if (!cacheHash || cacheIterator->value) in cachedShareableElementDataWithAttributes()
89cacheIterator->value = adoptPtr(new ShareableElementDataCacheEntry(ShareableElementDataCacheKey(el… in cachedShareableElementDataWithAttributes()
DPresentationAttributeStyle.cpp166 PresentationAttributeCache::iterator cacheIterator; in computePresentationAttributeStyle() local
168 cacheIterator = presentationAttributeCache().add(cacheHash, nullptr).iterator; in computePresentationAttributeStyle()
169 if (cacheIterator->value && cacheIterator->value->key != cacheKey) in computePresentationAttributeStyle()
172 cacheIterator = presentationAttributeCache().end(); in computePresentationAttributeStyle()
176 if (cacheHash && cacheIterator->value) { in computePresentationAttributeStyle()
177 style = cacheIterator->value->value; in computePresentationAttributeStyle()
188 if (!cacheHash || cacheIterator->value) in computePresentationAttributeStyle()
202 cacheIterator->value = newEntry.release(); in computePresentationAttributeStyle()