HomeSort by relevance Sort by last modified time
    Searched defs:TextLayoutCacheValue (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.cpp 35 mCache(GenerationCache<TextLayoutCacheKey, sp<TextLayoutCacheValue> >::kUnlimitedCapacity),
87 void TextLayoutCache::operator()(TextLayoutCacheKey& text, sp<TextLayoutCacheValue>& desc) {
108 sp<TextLayoutCacheValue> TextLayoutCache::getValue(SkPaint* paint,
120 sp<TextLayoutCacheValue> value = mCache.get(key);
128 value = new TextLayoutCacheValue();
299 * TextLayoutCacheValue
301 TextLayoutCacheValue::TextLayoutCacheValue() :
305 void TextLayoutCacheValue::setElapsedTime(uint32_t time) {
309 uint32_t TextLayoutCacheValue::getElapsedTime()
    [all...]
TextLayoutCache.h 116 * TextLayoutCacheValue is the Cache value
118 class TextLayoutCacheValue : public RefBase {
120 TextLayoutCacheValue();
181 }; // TextLayoutCacheValue
186 class TextLayoutCache : public OnEntryRemoved<TextLayoutCacheKey, sp<TextLayoutCacheValue> >,
202 void operator()(TextLayoutCacheKey& text, sp<TextLayoutCacheValue>& desc);
204 sp<TextLayoutCacheValue> getValue(SkPaint* paint, const jchar* text, jint start, jint count,
231 GenerationCache<TextLayoutCacheKey, sp<TextLayoutCacheValue> > mCache;

Completed in 41 milliseconds