Searched refs:ReferenceEntry (Results 1 - 22 of 22) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java298 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) {
311 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) {
324 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) {
338 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value);
354 <K, V> ReferenceEntry<K, V> newEntry(
355 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
361 <K, V> ReferenceEntry<K, V> newEntry(
362 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
367 <K, V> ReferenceEntry<K, V> copyEntry(
368 Segment<K, V> segment, ReferenceEntry<
490 newEntry( Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
630 interface ReferenceEntry<K, V> { interface in class:MapMakerInternalMap
917 StrongEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1013 StrongExpirableEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1060 StrongEvictableEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1095 StrongExpirableEvictableEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1172 SoftEntry(ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1267 SoftExpirableEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1315 SoftEvictableEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1351 SoftExpirableEvictableEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1429 WeakEntry(ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1525 WeakExpirableEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1573 WeakEvictableEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1609 WeakExpirableEvictableEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1826 newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
2128 newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
[all...]
H A DComputingConcurrentHashMap.java81 ReferenceEntry<K, V> e = getEntry(key, hash);
100 AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
102 ReferenceEntry<K, V> first = table.get(index);
171 V compute(K key, int hash, ReferenceEntry<K, V> e,
221 public ReferenceEntry<K, V> getEntry() {
227 ReferenceQueue<V> queue, V value, ReferenceEntry<K, V> entry) {
261 public ReferenceEntry<K, V> getEntry() {
267 ReferenceQueue<V> queue, V value, ReferenceEntry<K, V> entry) {
303 public ReferenceEntry<K, V> getEntry() {
309 ReferenceQueue<V> queue, @Nullable V value, ReferenceEntry<
[all...]
H A DInterners.java23 import com.google.common.collect.MapMakerInternalMap.ReferenceEntry;
76 ReferenceEntry<E, Dummy> entry = map.getEntry(sample);
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java381 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
396 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
412 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
429 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight);
445 <K, V> ReferenceEntry<K, V> newEntry(
446 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
452 <K, V> ReferenceEntry<K, V> newEntry(
453 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
458 <K, V> ReferenceEntry<K, V> copyEntry(
459 Segment<K, V> segment, ReferenceEntry<
582 newEntry( Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
750 interface ReferenceEntry<K, V> { interface in class:LocalCache
1067 StrongEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1106 StrongAccessEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1152 StrongWriteEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1198 StrongAccessWriteEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1287 WeakEntry(ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1395 WeakAccessEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1442 WeakWriteEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1489 WeakAccessWriteEntry( ReferenceQueue<K> queue, K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
1808 newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
2129 newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) argument
[all...]
/external/guava/guava-tests/benchmark/com/google/common/cache/
H A DChainBenchmark.java22 import com.google.common.cache.LocalCache.ReferenceEntry;
35 private ReferenceEntry<Object, Object> head;
36 private ReferenceEntry<Object, Object> chain;
H A DSegmentBenchmark.java24 import com.google.common.cache.LocalCache.ReferenceEntry;
57 AtomicReferenceArray<ReferenceEntry<Object, Object>> oldTable = segment.table;
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapMakerInternalMapTest.java32 import com.google.common.collect.MapMakerInternalMap.ReferenceEntry;
369 ReferenceEntry<Object, Object> entry = segment.getEntry(one, hash);
416 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
429 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
448 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
454 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
464 ReferenceEntry<Object, Object> copyOne = map.copyEntry(entryOne, null);
471 ReferenceEntry<Object, Object> copyTwo = map.copyEntry(entryTwo, copyOne);
481 MapMakerInternalMap<K, V> map, ReferenceEntry<K, V> one, ReferenceEntry<
[all...]
H A DComputingConcurrentHashMapTest.java31 import com.google.common.collect.MapMakerInternalMap.ReferenceEntry;
111 List<ReferenceEntry<Object, Object>> writeOrder = Lists.newLinkedList();
112 List<ReferenceEntry<Object, Object>> readOrder = Lists.newLinkedList();
118 ReferenceEntry<Object, Object> entry = segment.getEntry(key, hash);
129 List<ReferenceEntry<Object, Object>> reads = Lists.newArrayList();
130 Iterator<ReferenceEntry<Object, Object>> i = readOrder.iterator();
132 ReferenceEntry<Object, Object> entry = i.next();
168 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
197 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheTesting.java28 import com.google.common.cache.LocalCache.ReferenceEntry;
66 ReferenceEntry<K, V> entry = getReferenceEntry(cache, key);
85 ReferenceEntry<K, V> entry = getReferenceEntry(cache, key);
94 static <K, V> ReferenceEntry<K, V> getReferenceEntry(Cache<K, V> cache, K key) {
227 Set<ReferenceEntry<?, ?>> entries = Sets.newIdentityHashSet();
229 ReferenceEntry<?, ?> prev = null;
230 for (ReferenceEntry<?, ?> current : segment.writeQueue) {
249 Set<ReferenceEntry<?, ?>> entries = Sets.newIdentityHashSet();
251 ReferenceEntry<?, ?> prev = null;
252 for (ReferenceEntry<
[all...]
H A DLocalCacheTest.java40 import com.google.common.cache.LocalCache.ReferenceEntry;
454 List<ReferenceEntry<Object, Object>> writeOrder = Lists.newLinkedList();
455 List<ReferenceEntry<Object, Object>> readOrder = Lists.newLinkedList();
461 ReferenceEntry<Object, Object> entry = segment.getEntry(key, hash);
472 List<ReferenceEntry<Object, Object>> reads = Lists.newArrayList();
473 Iterator<ReferenceEntry<Object, Object>> i = readOrder.iterator();
475 ReferenceEntry<Object, Object> entry = i.next();
510 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
539 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
610 AtomicReferenceArray<ReferenceEntry<Objec
[all...]
H A DCacheEvictionTest.java25 import com.google.common.cache.LocalCache.ReferenceEntry;
154 new Receiver<ReferenceEntry<Integer, Integer>>() {
156 public void accept(ReferenceEntry<Integer, Integer> entry) {
169 new Receiver<ReferenceEntry<Integer, Integer>>() {
171 public void accept(ReferenceEntry<Integer, Integer> entry) {
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/r8/deps/
H A Dguava-19.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 185 milliseconds