OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mIconOutlineCache
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
PagedViewIconCache.java
79
private final HashMap<Key, Bitmap>
mIconOutlineCache
= new HashMap<Key, Bitmap>();
82
for (Key key :
mIconOutlineCache
.keySet()) {
83
mIconOutlineCache
.get(key).recycle();
85
mIconOutlineCache
.clear();
88
HashSet<Key> keysToRemove = new HashSet<Key>(
mIconOutlineCache
.keySet());
92
mIconOutlineCache
.get(key).recycle();
93
mIconOutlineCache
.remove(key);
122
mIconOutlineCache
.put(key, b);
125
if (
mIconOutlineCache
.containsKey(key)) {
126
mIconOutlineCache
.get(key).recycle()
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
PagedViewIconCache.java
79
private final HashMap<Key, Bitmap>
mIconOutlineCache
= new HashMap<Key, Bitmap>();
82
for (Key key :
mIconOutlineCache
.keySet()) {
83
mIconOutlineCache
.get(key).recycle();
85
mIconOutlineCache
.clear();
88
HashSet<Key> keysToRemove = new HashSet<Key>(
mIconOutlineCache
.keySet());
92
mIconOutlineCache
.get(key).recycle();
93
mIconOutlineCache
.remove(key);
122
mIconOutlineCache
.put(key, b);
125
if (
mIconOutlineCache
.containsKey(key)) {
126
mIconOutlineCache
.get(key).recycle()
[
all
...]
Completed in 38 milliseconds