generation 90 Source/platform/fonts/Font.cpp && (m_fontFallbackList ? m_fontFallbackList->generation() : 0) == (other.m_fontFallbackList ? other.m_fontFallbackList->generation() : 0); generation 93 Source/platform/fonts/FontCache.h unsigned short generation(); generation 46 Source/platform/fonts/FontFallbackList.cpp , m_generation(FontCache::fontCache()->generation()) generation 64 Source/platform/fonts/FontFallbackList.cpp m_generation = FontCache::fontCache()->generation(); generation 209 Source/platform/fonts/FontFallbackList.cpp ASSERT(FontCache::fontCache()->generation() == m_generation); generation 86 Source/platform/fonts/FontFallbackList.h unsigned generation() const { return m_generation; } generation 111 Source/platform/graphics/ImageDecodingStore.cpp ImageCacheMap::iterator iter = m_imageCacheMap.find(ImageCacheEntry::makeCacheKey(generator, cachedImage->scaledSize(), cachedImage->index(), cachedImage->generation())); generation 213 Source/platform/graphics/ImageDecodingStore.h static ImageCacheKey makeCacheKey(const ImageFrameGenerator* generator, const SkISize& size, size_t index, size_t generation) generation 215 Source/platform/graphics/ImageDecodingStore.h return std::make_pair(std::make_pair(generator, size), std::make_pair(index, generation)); generation 217 Source/platform/graphics/ImageDecodingStore.h ImageCacheKey cacheKey() const { return makeCacheKey(m_generator, m_cachedImage->scaledSize(), m_cachedImage->index(), m_cachedImage->generation()); } generation 90 Source/platform/graphics/ImageDecodingStoreTest.cpp PassOwnPtr<ScaledImageFragment> createIncompleteImage(const SkISize& size, bool discardable = false, size_t generation = 0) generation 100 Source/platform/graphics/ImageDecodingStoreTest.cpp return ScaledImageFragment::createPartial(size, 0, generation, bitmap); generation 36 Source/platform/graphics/ScaledImageFragment.cpp ScaledImageFragment::ScaledImageFragment(const SkISize& scaledSize, size_t index, size_t generation, const SkBitmap& bitmap) generation 39 Source/platform/graphics/ScaledImageFragment.cpp , m_generation(generation) generation 51 Source/platform/graphics/ScaledImageFragment.h static PassOwnPtr<ScaledImageFragment> createPartial(const SkISize& scaledSize, size_t index, size_t generation, const SkBitmap& bitmap) generation 53 Source/platform/graphics/ScaledImageFragment.h return adoptPtr(new ScaledImageFragment(scaledSize, index, generation, bitmap)); generation 56 Source/platform/graphics/ScaledImageFragment.h ScaledImageFragment(const SkISize&, size_t index, size_t generation, const SkBitmap&); generation 61 Source/platform/graphics/ScaledImageFragment.h size_t generation() const { return m_generation; }