Home
last modified time | relevance | path

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

/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DLocalCache.java109 alertListenerIfPresent(key, value.getValue(), RemovalCause.EXPIRED); in get()
123 alertListenerIfPresent(key, oldValue.getValue(), RemovalCause.REPLACED); in put()
134 alertListenerIfPresent(key, value, RemovalCause.EXPLICIT); in remove()
138 alertListenerIfPresent(key, value, RemovalCause.EXPIRED); in remove()
154 alertListenerIfPresent(entry.getKey(), entry.getValue().getValue(), RemovalCause.EXPLICIT); in clear()
172 alertListenerIfPresent(key, value, RemovalCause.EXPLICIT); in remove()
182 alertListenerIfPresent(key, oldValue, RemovalCause.REPLACED); in replace()
193 alertListenerIfPresent(key, currentValue, RemovalCause.REPLACED); in replace()
238 private void alertListenerIfPresent(Object key, Object value, RemovalCause cause) { in alertListenerIfPresent() method in LocalCache
289 alertListenerIfPresent(key, value.getValue(), RemovalCause.EXPIRED); in getIfPresent()