Home
last modified time | relevance | path

Searched refs:keysToRemove (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
DFontCache.cpp187 Vector<FontCacheKey> keysToRemove; in purgePlatformFontDataCache() local
188 keysToRemove.reserveInitialCapacity(gFontPlatformDataCache->size()); in purgePlatformFontDataCache()
192 keysToRemove.append(platformData->key); in purgePlatformFontDataCache()
195 size_t keysToRemoveCount = keysToRemove.size(); in purgePlatformFontDataCache()
197 gFontPlatformDataCache->remove(keysToRemove[i]); in purgePlatformFontDataCache()
214 Vector<FontCache::FontFileKey> keysToRemove; in purgeFontVerticalDataCache() local
215 keysToRemove.reserveInitialCapacity(fontVerticalDataCache.size()); in purgeFontVerticalDataCache()
218 keysToRemove.append(verticalData->key); in purgeFontVerticalDataCache()
220 for (size_t i = 0, count = keysToRemove.size(); i < count; ++i) in purgeFontVerticalDataCache()
221 fontVerticalDataCache.take(keysToRemove[i]); in purgeFontVerticalDataCache()
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
DSVGAnimatedProperty.cpp49 Vector<SVGAnimatedPropertyDescription> keysToRemove; in detachAnimatedPropertiesForElement() local
55 keysToRemove.append(it->key); in detachAnimatedPropertiesForElement()
59 …or<SVGAnimatedPropertyDescription>::const_iterator it = keysToRemove.begin(); it != keysToRemove.e… in detachAnimatedPropertiesForElement()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DAbstractBiMap.java181 @Override public boolean removeAll(Collection<?> keysToRemove) { in removeAll() argument
182 return standardRemoveAll(keysToRemove); in removeAll()
/external/guava/guava/src/com/google/common/collect/
DAbstractBiMap.java185 @Override public boolean removeAll(Collection<?> keysToRemove) { in removeAll() argument
186 return standardRemoveAll(keysToRemove); in removeAll()