OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sBitmapCache
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
JavaBrowserViewRendererHelper.java
23
private static LruCache<Long, Bitmap>
sBitmapCache
= new LruCache<Long, Bitmap>(5);
29
* the Bitmap will be cached in
sBitmapCache
for future use.
39
Bitmap bitmap =
sBitmapCache
.get(ownerKey);
48
if (
sBitmapCache
.size() > AwContents.getNativeInstanceCount()) {
49
sBitmapCache
.evictAll();
51
sBitmapCache
.put(ownerKey, bitmap);
/packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
PhotoManager.java
184
private static final LruCache<BitmapIdentifier, Bitmap>
sBitmapCache
;
189
/** Cache size for {@link #
sBitmapCache
} for devices with "large" RAM. */
214
sBitmapCache
= new LruCache<BitmapIdentifier, Bitmap>(bitmapCacheSize) {
227
+ " + " + btk(
sBitmapCache
.maxSize()));
414
final Bitmap cached =
sBitmapCache
.get(bitmapKey);
535
sBitmapCache
.put(bitmapKey, bitmap);
562
sBitmapCache
.evictAll();
592
for (Bitmap b :
sBitmapCache
.snapshot().values()) {
728
if (
sBitmapCache
.get(request.bitmapKey) == null) {
764
if (
sBitmapCache
.get(r.bitmapKey) != null)
[
all
...]
Completed in 164 milliseconds