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

  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.h 65 * TextLayoutCacheKey is the Cache key
67 class TextLayoutCacheKey {
69 TextLayoutCacheKey();
71 TextLayoutCacheKey(const SkPaint* paint, const UChar* text, size_t start, size_t count,
74 TextLayoutCacheKey(const TextLayoutCacheKey& other);
81 static int compare(const TextLayoutCacheKey& lhs, const TextLayoutCacheKey& rhs);
85 bool operator==(const TextLayoutCacheKey& other) const {
89 bool operator!=(const TextLayoutCacheKey& other) const
    [all...]
TextLayoutCache.cpp 39 mCache(LruCache<TextLayoutCacheKey, sp<TextLayoutValue> >::kUnlimitedCapacity),
68 void TextLayoutCache::operator()(TextLayoutCacheKey& text, sp<TextLayoutValue>& desc) {
97 TextLayoutCacheKey key(paint, text, start, count, contextCount, dirFlags);
217 * TextLayoutCacheKey
219 TextLayoutCacheKey::TextLayoutCacheKey(): start(0), count(0), contextCount(0),
225 TextLayoutCacheKey::TextLayoutCacheKey(const SkPaint* paint, const UChar* text,
239 TextLayoutCacheKey::TextLayoutCacheKey(const TextLayoutCacheKey& other)
    [all...]

Completed in 436 milliseconds