/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
FileCache.java | 52 private final LruCache<String, CacheEntry> mEntryMap = 53 new LruCache<String, CacheEntry>(LRU_CAPACITY);
|
/packages/apps/Dialer/java/com/android/contacts/common/ |
ContactPhotoManagerImpl.java | 51 import android.util.LruCache; 115 private final LruCache<Object, BitmapHolder> mBitmapHolderCache; 123 private final LruCache<Object, Bitmap> mBitmapCache; 157 new LruCache<Object, Bitmap>(bitmapCacheSize) { 173 new LruCache<Object, BitmapHolder>(holderCacheSize) { [all...] |
/frameworks/base/core/java/android/provider/ |
FontsContract.java | 45 import android.util.LruCache; 168 private static final LruCache<String, Typeface> sTypefaceCache = new LruCache<>(16); [all...] |
/frameworks/base/core/java/android/widget/ |
SpellChecker.java | 28 import android.util.LruCache; 101 private final LruCache<Long, SuggestionSpan> mSuggestionSpanCache = 102 new LruCache<Long, SuggestionSpan>(SUGGESTION_SPAN_CACHE_SIZE); [all...] |
/frameworks/base/libs/hwui/ |
TessellationCache.cpp | 294 , mCache(LruCache<Description, Buffer*>::kUnlimitedCapacity) 295 , mShadowCache(LruCache<ShadowDescription, Task<vertexBuffer_pair_t*>*>::kUnlimitedCapacity) { 310 LruCache<Description, Buffer*>::Iterator iter(mCache);
|
FontRenderer.cpp | 87 , mActiveFonts(LruCache<Font::FontDescription, Font*>::kUnlimitedCapacity) 141 LruCache<Font::FontDescription, Font*>::Iterator it(mActiveFonts); 151 LruCache<Font::FontDescription, Font*>::Iterator it(mActiveFonts); 183 LruCache<Font::FontDescription, Font*>::Iterator it(mActiveFonts);
|
TextDropShadowCache.cpp | 100 : mCache(LruCache<ShadowText, ShadowTexture*>::kUnlimitedCapacity)
|
PathCache.cpp | 182 : mCache(LruCache<PathDescription, PathTexture*>::kUnlimitedCapacity) 342 LruCache<PathDescription, PathTexture*>::Iterator iter(mCache);
|
GradientCache.cpp | 67 : mCache(LruCache<GradientCacheEntry, Texture*>::kUnlimitedCapacity)
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/ |
RecentsTaskLoader.java | 33 import android.util.LruCache; 256 // This activity info LruCache is useful because it can be expensive to retrieve ActivityInfos 261 private final LruCache<ComponentName, ActivityInfo> mActivityInfoCache; 315 mActivityInfoCache = new LruCache(numRecentTasks);
|
/frameworks/base/services/core/java/com/android/server/notification/ |
ValidateNotificationPeople.java | 36 import android.util.LruCache; 88 private LruCache<String, LookupResult> mPeopleCache; 100 mPeopleCache = new LruCache<String, LookupResult>(PEOPLE_CACHE_SIZE);
|
/frameworks/support/compat/java/android/support/v4/provider/ |
FontsContractCompat.java | 52 import android.support.v4.util.LruCache; 175 private static final LruCache<String, Typeface> sTypefaceCache = new LruCache<>(16); [all...] |
/packages/apps/Email/provider_src/com/android/email/provider/ |
ContentCache.java | 26 import android.util.LruCache; 91 private final LruCache<String, Cursor> mLruCache; 413 mLruCache = new LruCache<String, Cursor>(maxSize) {
|
/packages/apps/TV/src/com/android/tv/data/ |
ProgramDataManager.java | 35 import android.util.LruCache; 113 private final LruCache<Long, Program> mZeroLengthProgramCache = new LruCache<>(10);
|
/frameworks/support/content/src/android/support/content/ |
ContentPager.java | 40 import android.support.v4.util.LruCache; 575 * LruCache holding at most {@code maxSize} cursors. Once evicted a cursor 581 private static final class CursorCache extends LruCache<Uri, Cursor> {
|
/packages/apps/Contacts/src/com/android/contacts/ |
ContactPhotoManager.java | 53 import android.util.LruCache; 641 private final LruCache<Object, BitmapHolder> mBitmapHolderCache; 658 private final LruCache<Object, Bitmap> mBitmapCache; 717 mBitmapCache = new LruCache<Object, Bitmap>(bitmapCacheSize) { 728 mBitmapHolderCache = new LruCache<Object, BitmapHolder>(holderCacheSize) { [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Typeface.java | 44 import android.util.LruCache; 105 private static final LruCache<String, Typeface> sDynamicTypefaceCache = new LruCache<>(16); [all...] |
/frameworks/layoutlib/bridge/src/android/content/res/ |
Resources_Delegate.java | 54 import android.util.LruCache; 80 private static LruCache<String, Drawable.ConstantState> sDrawableCache = new LruCache<>(50); [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteConnection.java | 29 import android.util.LruCache; [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
AppCompatDrawableManager.java | 49 import android.support.v4.util.LruCache; 671 private static class ColorFilterLruCache extends LruCache<Integer, PorterDuffColorFilter> { [all...] |
/frameworks/minikin/libs/minikin/ |
Layout.cpp | 30 #include <utils/LruCache.h> 153 android::LruCache<LayoutCacheKey, Layout*> mCache; 155 //static const size_t kMaxEntries = LruCache<LayoutCacheKey, Layout*>::kUnlimitedCapacity; [all...] |
/frameworks/support/samples/SupportLeanbackShowcase/libs/ |
picasso-2.5.2.jar | |
/prebuilts/tools/common/m2/repository/com/squareup/picasso/picasso/2.5.2/ |
picasso-2.5.2.jar | |
/frameworks/base/services/core/java/com/android/server/ |
InputMethodManagerService.java | 116 import android.util.LruCache; 262 private final LruCache<SuggestionSpan, InputMethodInfo> mSecureSuggestionSpans = 263 new LruCache<>(SECURE_SUGGESTION_SPANS_MAX_SIZE); [all...] |
/development/samples/training/multiscreen/newsreader/libs/ |
android-support-v4.jar | |