HomeSort by relevance Sort by last modified time
    Searched refs:constantWeigher (Results 1 - 4 of 4) sorted by null

  /external/guava/guava-tests/test/com/google/common/cache/
TestingWeighers.java 27 static Weigher<Object, Object> constantWeigher(int constant) {
28 return new ConstantWeigher(constant);
45 static final class ConstantWeigher implements Weigher<Object, Object> {
48 ConstantWeigher(int constant) {
CacheEvictionTest.java 19 import static com.google.common.cache.TestingWeighers.constantWeigher;
58 .weigher(constantWeigher(1))
84 .weigher(constantWeigher(2))
119 .weigher(constantWeigher(2))
CacheBuilderTest.java 24 import static com.google.common.cache.TestingWeighers.constantWeigher;
212 .weigher(constantWeigher(42));
223 .weigher(constantWeigher(42))
230 .weigher(constantWeigher(42));
LocalCacheTest.java 27 import static com.google.common.cache.TestingWeighers.constantWeigher;
293 .weigher(constantWeigher(1)));
    [all...]

Completed in 241 milliseconds