Searched defs:makeComputingMap (Results 1 - 5 of 5) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGenericMapMaker.java92 * See {@link MapMaker#makeComputingMap}.
95 public abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeComputingMap( method in class:GenericMapMaker
H A DMapMaker.java248 public <K, V> ConcurrentMap<K, V> makeComputingMap(Function<? super K, ? extends V> computer) { method in class:MapMaker
/external/guava/guava/src/com/google/common/collect/
H A DGenericMapMaker.java161 * See {@link MapMaker#makeComputingMap}.
164 public abstract <K extends K0, V extends V0> ConcurrentMap<K, V> makeComputingMap( method in class:GenericMapMaker
H A DMapMaker.java66 * .makeComputingMap(
657 * {@link com.google.common.cache.CacheBuilder}, with {@link #makeComputingMap} being replaced
659 * {@link #makeComputingMap} with {@code AtomicLong} values can often be migrated to
666 public <K, V> ConcurrentMap<K, V> makeComputingMap( method in class:MapMaker
/external/guava/guava-tests/test/com/google/common/collect/
H A DComputingConcurrentHashMapTest.java53 private static <K, V> ComputingConcurrentHashMap<K, V> makeComputingMap( method in class:ComputingConcurrentHashMapTest
81 makeComputingMap(createMapMaker(), computingFunction);
90 makeComputingMap(createMapMaker(), computingFunction);
113 makeComputingMap(maker.concurrencyLevel(1), computingFunction);
156 makeComputingMap(createMapMaker(), computingFunction);
170 ComputingConcurrentHashMap<Object, Object> map = makeComputingMap(maker, computingFunction);
199 ComputingConcurrentHashMap<Object, Object> map = makeComputingMap(maker, computingFunction);
229 ComputingConcurrentHashMap<Object, Object> map = makeComputingMap(maker, computingFunction);
265 makeComputingMap(maker, computingFunction);
323 tester.testAllPublicInstanceMethods(makeComputingMap(createMapMake
[all...]

Completed in 144 milliseconds