/external/guava/guava-tests/test/com/google/common/cache/ |
D | CacheStatsTest.java | 29 CacheStats stats = new CacheStats(0, 0, 0, 0, 0, 0); in testEmpty() 45 CacheStats stats = new CacheStats(11, 13, 17, 19, 23, 27); in testSingle() 61 CacheStats one = new CacheStats(11, 13, 17, 19, 23, 27); in testMinus() 62 CacheStats two = new CacheStats(53, 47, 43, 41, 37, 31); in testMinus() 64 CacheStats diff = two.minus(one); in testMinus() 78 assertEquals(new CacheStats(0, 0, 0, 0, 0, 0), one.minus(two)); in testMinus() 82 CacheStats one = new CacheStats(11, 13, 15, 13, 11, 9); in testPlus() 83 CacheStats two = new CacheStats(53, 47, 41, 39, 37, 35); in testPlus() 85 CacheStats sum = two.plus(one); in testPlus()
|
D | AbstractCacheTest.java | 73 CacheStats stats = counter.snapshot(); in testEmptySimpleStats() 104 CacheStats stats = counter.snapshot(); in testSingleSimpleStats() 162 assertEquals(new CacheStats(38, 60, 44, 54, totalLoadTime, 66), in testSimpleStatsIncrementBy()
|
D | CacheLoadingTest.java | 106 CacheStats stats = cache.stats(); in testLoad() 179 CacheStats stats = cache.stats(); in testReload() 230 CacheStats stats = cache.stats(); in testRefresh() 290 CacheStats stats = cache.stats(); in testRefresh_getIfPresent() 332 CacheStats stats = cache.stats(); in testBulkLoad_default() 378 CacheStats stats = cache.stats(); in testBulkLoad_loadAll() 598 CacheStats stats = cache.stats(); in testLoadNull() 669 CacheStats stats = cache.stats(); in testReloadNull() 714 CacheStats stats = cache.stats(); in testReloadNullFuture() 764 CacheStats stats = cache.stats(); in testRefreshNull() [all …]
|
D | CacheManualTest.java | 31 CacheStats stats = cache.stats(); in testGetIfPresent() 107 CacheStats stats = cache.stats(); in testGetAllPresent()
|
D | LocalLoadingCacheTest.java | 86 CacheStats stats = cache.stats(); in testStats()
|
D | CacheBuilderTest.java | 590 CacheStats stats = cache.stats(); in testRemovalNotification_get_basher()
|
/external/guava/guava/src/com/google/common/cache/ |
D | CacheStats.java | 63 public final class CacheStats { class 77 public CacheStats(long hitCount, long missCount, long loadSuccessCount, in CacheStats() method in CacheStats 219 public CacheStats minus(CacheStats other) { in minus() 220 return new CacheStats( in minus() 235 public CacheStats plus(CacheStats other) { in plus() 236 return new CacheStats( in plus() 253 if (object instanceof CacheStats) { in equals() 254 CacheStats other = (CacheStats) object; in equals()
|
D | AbstractCache.java | 127 public CacheStats stats() { in stats() 196 CacheStats snapshot(); in snapshot() 252 public CacheStats snapshot() { in snapshot() 253 return new CacheStats( in snapshot() 266 CacheStats otherStats = other.snapshot(); in incrementBy()
|
D | CacheBuilder.java | 177 public CacheStats snapshot() { 181 static final CacheStats EMPTY_STATS = new CacheStats(0, 0, 0, 0, 0, 0);
|
D | Cache.java | 135 CacheStats stats(); in stats()
|
D | ForwardingCache.java | 113 public CacheStats stats() { in stats()
|
D | LocalCache.java | 4786 public CacheStats stats() {
|
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
D | CacheBuilder.java | 171 public CacheStats snapshot() { 175 static final CacheStats EMPTY_STATS = new CacheStats(0, 0, 0, 0, 0, 0);
|
/external/owasp/sanitizer/lib/guava-libraries/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/owasp/sanitizer/distrib/lib/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |