Home
last modified time | relevance | path

Searched refs:mapValue (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/util/
DLruCache.java120 V mapValue; in get() local
122 mapValue = map.get(key); in get()
123 if (mapValue != null) { in get()
125 return mapValue; in get()
144 mapValue = map.put(key, createdValue); in get()
146 if (mapValue != null) { in get()
148 map.put(key, mapValue); in get()
154 if (mapValue != null) { in get()
155 entryRemoved(false, key, createdValue, mapValue); in get()
156 return mapValue; in get()
/frameworks/base/core/java/android/util/
DLruCache.java115 V mapValue; in get() local
117 mapValue = map.get(key); in get()
118 if (mapValue != null) { in get()
120 return mapValue; in get()
139 mapValue = map.put(key, createdValue); in get()
141 if (mapValue != null) { in get()
143 map.put(key, mapValue); in get()
149 if (mapValue != null) { in get()
150 entryRemoved(false, key, createdValue, mapValue); in get()
151 return mapValue; in get()
/frameworks/support/v4/java/android/support/v4/util/
DLruCache.java82 V mapValue; in get() local
84 mapValue = map.get(key); in get()
85 if (mapValue != null) { in get()
87 return mapValue; in get()
106 mapValue = map.put(key, createdValue); in get()
108 if (mapValue != null) { in get()
110 map.put(key, mapValue); in get()
116 if (mapValue != null) { in get()
117 entryRemoved(false, key, createdValue, mapValue); in get()
118 return mapValue; in get()