Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/cache/
DForwardingCache.java61 public V get(K key, Callable<? extends V> valueLoader) throws ExecutionException { in get() argument
62 return delegate().get(key, valueLoader); in get()
DCache.java77 V get(K key, Callable<? extends V> valueLoader) throws ExecutionException; in get() argument
DAbstractCache.java54 public V get(K key, Callable<? extends V> valueLoader) throws ExecutionException { in get() argument
DLocalCache.java4737 public V get(K key, final Callable<? extends V> valueLoader) throws ExecutionException {
4738 checkNotNull(valueLoader);
4742 return valueLoader.call();
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DLocalCache.java362 public V get(K key, Callable<? extends V> valueLoader) throws ExecutionException { in get() argument
369 V newValue = valueLoader.call(); in get()