OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bitmapItem
(Results
1 - 2
of
2
) sorted by null
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
BitmapDownloader.java
64
private static class
BitmapItem
{
74
public
BitmapItem
(Bitmap bitmap, boolean scaled) {
80
private final LruCache<String,
BitmapItem
> mMemoryCache;
124
mMemoryCache = new LruCache<String,
BitmapItem
>(cacheSize) {
126
protected int sizeOf(String key,
BitmapItem
bitmap) {
296
BitmapItem
bitmapItem
= mMemoryCache.get(bucketKey);
297
if (
bitmapItem
!= null) {
298
Bitmap currentBitmap =
bitmapItem
.mBitmap;
309
bitmapItem
= new BitmapItem(bitmap, isScaled)
[
all
...]
DrawableDownloader.java
80
private static class
BitmapItem
{
85
public
BitmapItem
(int originalWidth, int originalHeight) {
149
private final LruCache<String,
BitmapItem
> mMemoryCache;
190
mMemoryCache = new LruCache<String,
BitmapItem
>(cacheSize) {
192
protected int sizeOf(String key,
BitmapItem
bitmap) {
197
boolean evicted, String key,
BitmapItem
oldValue,
BitmapItem
newValue) {
359
BitmapItem
bitmapItem
= mMemoryCache.get(bucketKey);
363
if (
bitmapItem
!= null)
[
all
...]
Completed in 860 milliseconds