Home
last modified time | relevance | path

Searched refs:entryValue (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java2480 V entryValue = getLiveValue(e); in containsValue() local
2481 if (entryValue == null) { in containsValue()
2484 if (map.valueEquivalence.equivalent(value, entryValue)) { in containsValue()
2520 V entryValue = valueReference.get(); in put() local
2522 if (entryValue == null) { in put()
2526 enqueueNotification(key, hash, entryValue, RemovalCause.COLLECTED); in put()
2538 return entryValue; in put()
2542 enqueueNotification(key, hash, entryValue, RemovalCause.REPLACED); in put()
2544 return entryValue; in put()
2653 V entryValue = valueReference.get(); in replace() local
[all …]
/external/emma/core/java12/com/vladium/util/
DSoftValueMap.java492 Object entryValue = ref.get (); // convert the soft reference to a local strong one in rehash() local
495 if (entryValue != null) in rehash()
512 entryValue = null; in rehash()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2806 V entryValue = getLiveValue(e, now); in containsValue() local
2807 if (entryValue == null) { in containsValue()
2810 if (map.valueEquivalence.equivalent(value, entryValue)) { in containsValue()
2848 V entryValue = valueReference.get(); in put() local
2850 if (entryValue == null) { in put()
2868 return entryValue; in put()
2875 return entryValue; in put()
2982 V entryValue = valueReference.get(); in replace() local
2983 if (entryValue == null) { in replace()
2997 if (map.valueEquivalence.equivalent(oldValue, entryValue)) { in replace()
[all …]
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DJsonFormat.java769 Object entryValue = entry.getField(valueField); in printMapFieldValue() local
778 printSingleFieldValue(valueField, entryValue); in printMapFieldValue()