Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/font/
DFont.cpp64 for (uint32_t i = 0; i < mCachedGlyphs.size(); i++) { in ~Font()
65 delete mCachedGlyphs.valueAt(i); in ~Font()
127 for (uint32_t i = 0; i < mCachedGlyphs.size(); i++) { in invalidateTextureCache()
128 CachedGlyphInfo* cachedGlyph = mCachedGlyphs.valueAt(i); in invalidateTextureCache()
278 CachedGlyphInfo* cachedGlyph = mCachedGlyphs.valueFor(textUnit); in getCachedGlyph()
472 mCachedGlyphs.add(glyph, newGlyph); in cacheGlyph()
DFont.h152 DefaultKeyedVector<glyph_t, CachedGlyphInfo*> mCachedGlyphs; variable
/frameworks/rs/
DrsFont.cpp34 Font::Font(Context *rsc) : ObjectBase(rsc), mCachedGlyphs(NULL) { in Font()
87 for (uint32_t i = 0; i < mCachedGlyphs.size(); i ++) { in invalidateTextureCache()
88 mCachedGlyphs.valueAt(i)->mIsValid = false; in invalidateTextureCache()
226 CachedGlyphInfo *cachedGlyph = mCachedGlyphs.valueFor((uint32_t)utfChar); in getCachedUTFChar()
285 mCachedGlyphs.add(glyph, newGlyph); in cacheGlyph()
326 for (uint32_t i = 0; i < mCachedGlyphs.size(); i ++) { in ~Font()
327 CachedGlyphInfo *glyph = mCachedGlyphs.valueAt(i); in ~Font()
DrsFont.h127 DefaultKeyedVector<uint32_t, CachedGlyphInfo* > mCachedGlyphs; variable