HomeSort by relevance Sort by last modified time
    Searched refs:ReferenceEntry (Results 1 - 25 of 28) sorted by null

1 2

  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 299 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) {
312 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) {
325 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) {
339 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value);
355 <K, V> ReferenceEntry<K, V> newEntry(
356 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
362 <K, V> ReferenceEntry<K, V> newEntry(
363 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
368 <K, V> ReferenceEntry<K, V> copyEntry(
369 Segment<K, V> segment, ReferenceEntry<K, V> original, ReferenceEntry<K, V> newNext)
    [all...]
ComputingConcurrentHashMap.java 83 ReferenceEntry<K, V> e = getEntry(key, hash);
102 AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
104 ReferenceEntry<K, V> first = table.get(index);
173 V compute(K key, int hash, ReferenceEntry<K, V> e,
223 public ReferenceEntry<K, V> getEntry() {
228 public ValueReference<K, V> copyFor(ReferenceQueue<V> queue, ReferenceEntry<K, V> entry) {
262 public ReferenceEntry<K, V> getEntry() {
267 public ValueReference<K, V> copyFor(ReferenceQueue<V> queue, ReferenceEntry<K, V> entry) {
303 public ReferenceEntry<K, V> getEntry() {
308 public ValueReference<K, V> copyFor(ReferenceQueue<V> queue, ReferenceEntry<K, V> entry)
    [all...]
Interners.java 23 import com.google.common.collect.MapMakerInternalMap.ReferenceEntry;
68 ReferenceEntry<E, Dummy> entry = map.getEntry(sample);
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 376 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
391 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
407 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight) {
424 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value, int weight);
440 <K, V> ReferenceEntry<K, V> newEntry(
441 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
447 <K, V> ReferenceEntry<K, V> newEntry(
448 Segment<K, V> segment, K key, int hash, @Nullable ReferenceEntry<K, V> next) {
453 <K, V> ReferenceEntry<K, V> copyEntry(
454 Segment<K, V> segment, ReferenceEntry<K, V> original, ReferenceEntry<K, V> newNext)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java 32 import com.google.common.collect.MapMakerInternalMap.ReferenceEntry;
395 ReferenceEntry<Object, Object> entry = segment.getEntry(one, hash);
442 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
455 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
474 ReferenceEntry<Object, Object> entryOne = map.newEntry(keyOne, hashOne, null);
480 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne);
490 ReferenceEntry<Object, Object> copyOne = map.copyEntry(entryOne, null);
497 ReferenceEntry<Object, Object> copyTwo = map.copyEntry(entryTwo, copyOne);
507 MapMakerInternalMap<K, V> map, ReferenceEntry<K, V> one, ReferenceEntry<K, V> two)
    [all...]
ComputingConcurrentHashMapTest.java 30 import com.google.common.collect.MapMakerInternalMap.ReferenceEntry;
115 List<ReferenceEntry<Object, Object>> writeOrder = Lists.newLinkedList();
116 List<ReferenceEntry<Object, Object>> readOrder = Lists.newLinkedList();
122 ReferenceEntry<Object, Object> entry = segment.getEntry(key, hash);
133 List<ReferenceEntry<Object, Object>> reads = Lists.newArrayList();
134 Iterator<ReferenceEntry<Object, Object>> i = readOrder.iterator();
136 ReferenceEntry<Object, Object> entry = i.next();
172 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
201 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
  /external/guava/guava-tests/test/com/google/common/cache/
CacheTesting.java 27 import com.google.common.cache.LocalCache.ReferenceEntry;
65 ReferenceEntry<K, V> entry = getReferenceEntry(cache, key);
84 ReferenceEntry<K, V> entry = getReferenceEntry(cache, key);
93 static <K, V> ReferenceEntry<K, V> getReferenceEntry(Cache<K, V> cache, K key) {
222 Set<ReferenceEntry<?, ?>> entries = Sets.newIdentityHashSet();
224 ReferenceEntry<?, ?> prev = null;
225 for (ReferenceEntry<?, ?> current : segment.writeQueue) {
244 Set<ReferenceEntry<?, ?>> entries = Sets.newIdentityHashSet();
246 ReferenceEntry<?, ?> prev = null;
247 for (ReferenceEntry<?, ?> current : segment.accessQueue)
    [all...]
LocalCacheTest.java 41 import com.google.common.cache.LocalCache.ReferenceEntry;
420 List<ReferenceEntry<Object, Object>> writeOrder = Lists.newLinkedList();
421 List<ReferenceEntry<Object, Object>> readOrder = Lists.newLinkedList();
427 ReferenceEntry<Object, Object> entry = segment.getEntry(key, hash);
438 List<ReferenceEntry<Object, Object>> reads = Lists.newArrayList();
439 Iterator<ReferenceEntry<Object, Object>> i = readOrder.iterator();
441 ReferenceEntry<Object, Object> entry = i.next();
476 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
505 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table;
566 AtomicReferenceArray<ReferenceEntry<Object, Object>> table = segment.table
    [all...]
CacheEvictionTest.java 25 import com.google.common.cache.LocalCache.ReferenceEntry;
139 new Receiver<ReferenceEntry<Integer, Integer>>() {
141 public void accept(ReferenceEntry<Integer, Integer> entry) {
154 new Receiver<ReferenceEntry<Integer, Integer>>() {
156 public void accept(ReferenceEntry<Integer, Integer> entry) {
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractReferenceMap.java 39 * <code>ReferenceEntry</code> class which can be overridden and replaced.
380 if (((ReferenceEntry<K, V>) entry).purge(ref)) {
442 * Creates a ReferenceEntry instead of a HashEntry.
451 return new ReferenceEntry<K, V>(this, (ReferenceEntry<K, V>) next, hashCode, key, value);
564 protected static class ReferenceEntry <K,V> extends HashEntry<K, V> {
582 public ReferenceEntry(AbstractReferenceMap<K, V> parent, ReferenceEntry<K, V> next, int hashCode, K key, V value) {
721 protected ReferenceEntry<K, V> next() {
722 return (ReferenceEntry<K, V>) next
    [all...]
  /external/chromium/net/disk_cache/
in_flight_backend_io.h 43 void ReferenceEntry();
in_flight_backend_io.cc 46 void BackendIO::ReferenceEntry() {
  /external/chromium_org/net/disk_cache/
in_flight_backend_io.h 46 void ReferenceEntry();
in_flight_backend_io.cc 74 void BackendIO::ReferenceEntry() {
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /external/droiddriver/libs/
guava-13.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6/
gradle-tooling-api-1.6.jar 

Completed in 377 milliseconds

1 2