Home
last modified time | relevance | path

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

/external/guava/guava-gwt/test-super/com/google/common/cache/super/com/google/common/cache/
DTestingCacheLoaders.java61 static <K, V> ConstantLoader<K, V> constantLoader(@Nullable V constant) {
62 return new ConstantLoader<K, V>(constant);
123 static final class ConstantLoader<K, V> extends CacheLoader<K, V> {
126 ConstantLoader(V constant) {
/external/guava/guava-tests/test/com/google/common/cache/
DTestingCacheLoaders.java64 static <K, V> ConstantLoader<K, V> constantLoader(@Nullable V constant) {
65 return new ConstantLoader<K, V>(constant);
126 static final class ConstantLoader<K, V> extends CacheLoader<K, V> {
129 ConstantLoader(V constant) {
/external/guava/guava-tests/test/com/google/common/collect/
DComputingConcurrentHashMapTest.java97 Function<Object, Object> computingFunction = new ConstantLoader<Object, Object>(null); in testComputeNull()
322 static final class ConstantLoader<K, V> implements Function<K, V> { class in ComputingConcurrentHashMapTest
325 public ConstantLoader(V constant) { in ConstantLoader() method in ComputingConcurrentHashMapTest.ConstantLoader