/external/guava/guava-tests/test/com/google/common/cache/ |
D | CacheTesting.java | 27 import com.google.common.cache.LocalCache.LocalLoadingCache; 28 import com.google.common.cache.LocalCache.ReferenceEntry; 29 import com.google.common.cache.LocalCache.Segment; 30 import com.google.common.cache.LocalCache.ValueReference; 97 LocalCache<K, V> map = toLocalCache(cache); in getReferenceEntry() 108 LocalCache<K, V> map = toLocalCache(cache); in forceExpandSegment() 118 static <K, V> LocalCache<K, V> toLocalCache(Cache<K, V> cache) { in toLocalCache() 136 LocalCache<?, ?> map = toLocalCache(cache); in drainRecencyQueues() 158 static void drainReferenceQueues(LocalCache<?, ?> cchm) { in drainReferenceQueues() argument 159 for (LocalCache.Segment<?, ?> segment : cchm.segments) { in drainReferenceQueues() [all …]
|
D | LocalCacheTest.java | 20 import static com.google.common.cache.LocalCache.DISCARDING_QUEUE; 21 import static com.google.common.cache.LocalCache.DRAIN_THRESHOLD; 22 import static com.google.common.cache.LocalCache.nullEntry; 23 import static com.google.common.cache.LocalCache.unset; 36 import com.google.common.cache.LocalCache.EntryFactory; 37 import com.google.common.cache.LocalCache.LoadingValueReference; 38 import com.google.common.cache.LocalCache.LocalLoadingCache; 39 import com.google.common.cache.LocalCache.LocalManualCache; 40 import com.google.common.cache.LocalCache.ReferenceEntry; 41 import com.google.common.cache.LocalCache.Segment; [all …]
|
D | PackageSanityTests.java | 33 setDefault(LocalCache.class, new LocalCache<Object, Object>(CacheBuilder.newBuilder(), null)); in PackageSanityTests()
|
D | CacheReferencesTest.java | 17 import static com.google.common.cache.LocalCache.Strength.STRONG; 22 import com.google.common.cache.LocalCache.Strength;
|
D | CacheBuilderTest.java | 88 LocalCache<?, ?> map = CacheTesting.toLocalCache(cache); in testInitialCapacity_small() 102 LocalCache<?, ?> map = CacheTesting.toLocalCache(cache); in testInitialCapacity_smallest() 140 LocalCache<?, ?> map = CacheTesting.toLocalCache(cache); in testConcurrencyLevel_small() 608 LocalCache<?, ?> map = CacheTesting.toLocalCache(cache); in testSizingDefaults()
|
D | LocalLoadingCacheTest.java | 24 import com.google.common.cache.LocalCache.LocalLoadingCache; 25 import com.google.common.cache.LocalCache.Segment;
|
D | CacheBuilderFactory.java | 22 import com.google.common.cache.LocalCache.Strength;
|
D | CacheEvictionTest.java | 25 import com.google.common.cache.LocalCache.ReferenceEntry;
|
D | EmptyCachesTest.java | 25 import com.google.common.cache.LocalCache.Strength;
|
/external/guava/guava-tests/benchmark/com/google/common/cache/ |
D | ChainBenchmark.java | 22 import com.google.common.cache.LocalCache.ReferenceEntry; 23 import com.google.common.cache.LocalCache.Segment; 40 LocalCache<Object, Object> cache = new LocalCache<Object, Object>( in setUp()
|
D | SegmentBenchmark.java | 24 import com.google.common.cache.LocalCache.ReferenceEntry; 25 import com.google.common.cache.LocalCache.Segment; 42 LocalCache<Object, Object> cache = new LocalCache<Object, Object>( in setUp()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | ThreadReferenceImpl.java | 66 private static class LocalCache { class in ThreadReferenceImpl 100 private LocalCache localCache; 103 localCache = new LocalCache(); in resetLocalCache() 267 LocalCache snapshot = localCache; in jdwpStatus() 332 LocalCache snapshot = localCache; in frameCount() 364 private boolean isSubrange(LocalCache snapshot, in isSubrange() 400 LocalCache snapshot = localCache; in privateFrames() 444 LocalCache snapshot = localCache; in ownedMonitors() 470 LocalCache snapshot = localCache; in currentContendedMonitor() 497 LocalCache snapshot = localCache; in ownedMonitorsAndFrames()
|
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
D | LocalCache.java | 53 public class LocalCache<K, V> implements ConcurrentMap<K, V> { class 64 LocalCache(CacheBuilder<? super K, ? super V> builder, CacheLoader<? super K, V> loader) { in LocalCache() method in LocalCache 348 final LocalCache<K, V> localCache; 356 this.localCache = new LocalCache<K, V>(builder, loader); in LocalManualCache() 546 this.iterator = LocalCache.this.cachingHashMap.entrySet().iterator(); in EntryIterator() 582 LocalCache.this.remove(lastEntry.getKey(), lastEntry.getValue()); in remove() 814 V v = LocalCache.this.get(key); in contains() 826 return (key != null) && LocalCache.this.remove(key, e.getValue()); in remove()
|
D | CacheBuilder.java | 32 import com.google.common.cache.LocalCache.Strength; 544 return new LocalCache.LocalLoadingCache<K1, V1>(this, loader); in build() 562 return new LocalCache.LocalManualCache<K1, V1>(this); in build()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | MemoryDependenceAnalysis.cpp | 511 MemDepResult &LocalCache = LocalDeps[QueryInst]; in getDependency() local 515 if (!LocalCache.isDirty()) in getDependency() 516 return LocalCache; in getDependency() 520 if (Instruction *Inst = LocalCache.getInst()) { in getDependency() 533 LocalCache = MemDepResult::getNonLocal(); in getDependency() 535 LocalCache = MemDepResult::getNonFuncLocal(); in getDependency() 545 LocalCache = getPointerDependencyFrom(MemLoc, isLoad, ScanPos, in getDependency() 550 LocalCache = getCallSiteDependencyFrom(QueryCS, isReadOnly, ScanPos, in getDependency() 554 LocalCache = MemDepResult::getUnknown(); in getDependency() 558 if (Instruction *I = LocalCache.getInst()) in getDependency() [all …]
|
/external/llvm/lib/Analysis/ |
D | MemoryDependenceAnalysis.cpp | 681 MemDepResult &LocalCache = LocalDeps[QueryInst]; in getDependency() local 685 if (!LocalCache.isDirty()) in getDependency() 686 return LocalCache; in getDependency() 690 if (Instruction *Inst = LocalCache.getInst()) { in getDependency() 703 LocalCache = MemDepResult::getNonLocal(); in getDependency() 705 LocalCache = MemDepResult::getNonFuncLocal(); in getDependency() 715 LocalCache = getPointerDependencyFrom( in getDependency() 720 LocalCache = getCallSiteDependencyFrom( in getDependency() 724 LocalCache = MemDepResult::getUnknown(); in getDependency() 728 if (Instruction *I = LocalCache.getInst()) in getDependency() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | MemoryDependenceAnalysis.cpp | 717 MemDepResult &LocalCache = LocalDeps[QueryInst]; in getDependency() local 721 if (!LocalCache.isDirty()) in getDependency() 722 return LocalCache; in getDependency() 726 if (Instruction *Inst = LocalCache.getInst()) { in getDependency() 739 LocalCache = MemDepResult::getNonLocal(); in getDependency() 741 LocalCache = MemDepResult::getNonFuncLocal(); in getDependency() 751 LocalCache = getPointerDependencyFrom( in getDependency() 756 LocalCache = getCallSiteDependencyFrom( in getDependency() 760 LocalCache = MemDepResult::getUnknown(); in getDependency() 764 if (Instruction *I = LocalCache.getInst()) in getDependency() [all …]
|
/external/owasp/sanitizer/distrib/lib/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/owasp/sanitizer/lib/guava-libraries/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/guava/guava/src/com/google/common/cache/ |
D | CacheBuilder.java | 34 import com.google.common.cache.LocalCache.Strength; 789 return new LocalCache.LocalLoadingCache<K1, V1>(this, loader); in build() 807 return new LocalCache.LocalManualCache<K1, V1>(this); in build()
|
D | LocalCache.java | 96 class LocalCache<K, V> extends AbstractMap<K, V> implements ConcurrentMap<K, V> { class 157 static final Logger logger = Logger.getLogger(LocalCache.class.getName()); 235 LocalCache( in LocalCache() method in LocalCache 253 ? LocalCache.<RemovalNotification<K, V>>discardingQueue() in LocalCache() 2010 final LocalCache<K, V> map; 2089 Segment(LocalCache<K, V> map, int initialCapacity, long maxSegmentWeight, in Segment() 2104 : LocalCache.<ReferenceEntry<K, V>>discardingQueue(); in Segment() 2108 : LocalCache.<ReferenceEntry<K, V>>discardingQueue(); in Segment() 2112 : LocalCache.<ReferenceEntry<K, V>>discardingQueue(); in Segment() 3474 this(LocalCache.<K, V>unset()); in LoadingValueReference() [all …]
|
D | CacheBuilderSpec.java | 26 import com.google.common.cache.LocalCache.Strength;
|
/external/guice/lib/ |
D | guava-19.0.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/external/cldr/tools/java/libs/ |
D | guava.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/external/v8/src/inspector/build/closure-compiler/ |
D | closure-compiler.jar | META-INF/MANIFEST.MF
META-INF/
com/
com/google/
com/ ... |