Home
last modified time | relevance | path

Searched refs:storeLoadedValue (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava-tests/test/com/google/common/cache/
DLocalCacheTest.java1287 assertTrue(segment.storeLoadedValue(key, hash, valueRef, value)); in testSegmentStoreComputedValue()
1294 assertFalse(segment.storeLoadedValue(key, hash, valueRef, value2)); in testSegmentStoreComputedValue()
1308 assertTrue(segment.storeLoadedValue(key, hash, valueRef, value3)); in testSegmentStoreComputedValue()
1321 assertTrue(segment.storeLoadedValue(key, hash, valueRef, value4)); in testSegmentStoreComputedValue()
1335 assertTrue(segment.storeLoadedValue(key, hash, valueRef, value4)); in testSegmentStoreComputedValue()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2353 storeLoadedValue(key, hash, loadingValueReference, value); in getAndRecordStats()
3111 boolean storeLoadedValue(K key, int hash, LoadingValueReference<K, V> oldValueReference, in storeLoadedValue() method in LocalCache.Segment